开发学院数据库MSSQL Server SQL2008构建偶尔连接系统 阅读

SQL2008构建偶尔连接系统

 2008-09-28 10:05:07 来源:WEB开发网   
核心提示: <endpoint address ="" binding="wsHttpBinding" contract="DataService.ICustomersCacheSyncContract"/>3.复制该命令行(不含

<endpoint address ="" binding="wsHttpBinding" contract="DataService.ICustomersCacheSyncContract"/>

3.复制该命令行(不含注释字符)。

4.在“Solution Explorer”中双击 DataService 的 App.config 文件以打开该文件。

5.找到 <!-- Metadata Endpoints --> 注释。在以 <endpoint address = "mex" 开头的命令行下面添加在步骤 3 中复制的命令行。

6.为刚粘贴的终结点地址键入一个名称(例如“SyncServer”),这样就有了与下面的内容类似的代码:

<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>

<endpoint address ="SyncServer" binding="wsHttpBinding" contract="DataService.ICustomersCacheSyncContract"/>

7.在“Build”菜单上单击“Build Solution”。

向现有的数据服务添加同步服务操作

1.在“Solution Explorer”中双击 CustomersCache.Server.SyncContract 文件以将其打开。

2.将类名从“CustomersCacheSyncService”更改为“Service1”。下面的代码示例演示在更改了类名后应当显示的类声明。(C# 用户还必须更改构造函数的名称。)

public partial class Service1 : object, ICustomersCacheSyncContract

{...

3.对于 C# 用户:

4.在 Service1.cs 文件中将 Service1 的类声明更改为一个分部类,以使声明类似于以下内容:

 public partial class Service1 : object, ICustomersCacheSyncContract {
  private CustomersCacheServerSyncProvider _serverSyncProvider;
  public Service1()
  {...

上一页  5 6 7 8 9 10 

Tags:SQL 构建 偶尔

编辑录入:爽爽 [复制链接] [打 印]
[]
  • 好
  • 好的评价 如果觉得好,就请您
      0%(0)
  • 差
  • 差的评价 如果觉得差,就请您
      0%(0)
赞助商链接