将Wcf服务添加到WCF测试客户端时出错 - 无法访问服务元数据

时间:2015-02-27 17:07:27

标签: c# .net web-services wcf datatable

我创建了一个WCF服务,并希望测试我使用WCF测试客户端添加的一个方法。当我最初创建该方法时,它返回了一个DataTable。当我使用WCF测试客户端添加服务时,使用原始app.config文件添加了服务。返回DataTable的方法显示为'X',因为我了解到您无法返回此数据类型。所以我创建了一个包含DataTable的类。该方法返回DataContract,Subject。代码如下:

 [ServiceContract]
public interface IPaging
{
    [OperationContract]
    Subject GetSubjectList(string strUserID);

    [OperationContract]
    CompositeType GetDataUsingDataContract(CompositeType composite);
}

[DataContract]
public class Subject
{
    DataTable dtSubjectData = new DataTable();

    [DataMember]
    public DataTable SubjectTable
    {
        get;
        set;
    }
}

方法详情:     名称空间PagingService {     公共类分页:IPaging     {         主题cSubject = new Subject();

    public Subject GetSubjectList(string strUserID)
    {
         ....
    }
}

}

现在,当我尝试将服务添加到WCF测试客户端时,我收到错误: “无法访问服务元数据。” 这是我的app.config文件:

<system.serviceModel>
<services>
  <service name="PagingService.Paging" behaviorConfiguration="SimpleServiceBehavior">
    <endpoint address="" binding="wsHttpBinding" contract="PagingService.IPaging">
      <identity>
        <dns value="localhost" />
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:8732/Design_Time_Addresses/PagingService/Service1/" />
      </baseAddresses>
    </host>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="SimpleServiceBehavior">
      <serviceMetadata httpGetEnabled="True" />
      <!-- To avoid disclosing metadata information, 
      set the value below to false and remove the metadata endpoint above before deployment -->
      <serviceMetadata httpGetEnabled="True"/>
      <!-- To receive exception details in faults for debugging purposes, 
      set the value below to true.  Set to false before deployment 
      to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="False" />
    </behavior>
  </serviceBehaviors>

在我看来,它不是app.config文件,因为原始条目在方法返回DataTable时起作用。但现在返回类型现在是'主题',它不会在某处更新。

当您更改方法签名时,是否还有其他需要更改的地方,我错过了?

感谢。

1 个答案:

答案 0 :(得分:1)

为什么不直接序列化DataTable并将其作为XML字符串发回?在客户端,您可以使用DataTable.ReadXML在客户端创建DataTable。