1
[ServiceContract]
public interface ISecurities<T> : IPolicyProvider where T: EntityObject 
{
  [OperationContract(Name="GetAllSecurities")]
    IEnumerable<T> GetSecurities();

  [OperationContract]
  IEnumerable<T> GetSecurities<T1>(List<T1> lstIdentifiers) where T1 : FI_CusipMaster;

  [OperationContract]
  T GetSecurity<T1>(T1 lstIdentifiers) where T1 : FI_CusipMaster;
}

//Host
        ///CADIS Contract
        ServiceHost dmHost = new System.ServiceModel.ServiceHost(typeof(GlobalInvestors.FIPA.BLL.UDI.CADISSecurities));

        Uri baseAddress = dmHost.BaseAddresses[0];
        Uri policyAddress = new Uri(baseAddress.AbsoluteUri.Replace(baseAddress.AbsolutePath, ""));

        dmHost.AddServiceEndpoint(
            typeof(GlobalInvestors.FIPA.BLL.IPolicyProvider),
            new System.ServiceModel.WebHttpBinding(),
            policyAddress).Behaviors.Add(new System.ServiceModel.Description.WebHttpBehavior());

        dmHost.Open();

 //App.Config
  <service behaviorConfiguration="UDIBehaviour" name="GlobalInvestors.FIPA.BLL.UDI.CADISSecurities">
    <endpoint binding="basicHttpBinding" contract="GlobalInvestors.FIPA.BLL.UDI.ICADISSecurities" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:1667/CADIS" />
      </baseAddresses>
    </host>
  </service>
  <behavior name="UDIBehaviour">
      <serviceMetadata httpGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="true" />
    </behavior>

[ServiceContract]
[ServiceKnownType(typeof(SecurityMasterAdapter))]
public interface ICADISSecurities :ISecurities<SecurityMasterAdapter>
{

}

我得到“InvalidDataContractException Type 'System.Collections.Generic.List`1[T1]' cannot be export as a schema type 因为它是开放的泛型类型。如果泛型类型的所有泛型参数类型都是实际类型,则只能导出泛型类型。” 如果我主持这份合同。

我读过在 ServiceContract 中避免泛型是件好事。但是可以使用T吗?

4

3 回答 3

3

在这种情况下,您的问题不是 ServiceContract 中的 T,而是 T1 用作 DataContract。如果在服务合同实施期间将 T 替换为特定类型,则可以在服务合同中使用 T。对于数据协定(操作参数和返回类型),您根本不能使用 T。您始终必须指定具体类型。可以使用 ServiceKnownTypeAttribute 重写您的服务合同,以便将 T1 替换为 FI_CusipMaster 并且 ServiceKnownType 指定从 FI_CusipMaster 派生的所有可能的类。

编辑:另一种方法是不使用 ServiceKnownType 并使用必须在 FI_CusipMaster 类型上定义的 KnownTypeAttribute。

最好的问候, 拉迪斯拉夫

于 2010-08-17T13:55:05.950 回答
1

正如错误所说,不,您不能使用 T。服务合同需要能够写出处理确定类型的序列化信息。它无法处理导出函数中的开放泛型

于 2010-08-17T13:47:07.773 回答
1

在您的示例中, T一个泛型类型。您不能在 ServiceContract 中使用泛型类型,除非它与定义的类型参数一起使用,如class Foo : List<int> { }.

于 2010-08-17T13:49:03.057 回答