6

我正在尝试将 MessageContract 添加到我的 WCF 服务中,类似于这个问题中发生的事情:WCF: using streaming with Message Contracts

这是我得到的异常: 无法加载操作“UploadFile”,因为它具有 System.ServiceModel.Channels.Message 类型的参数或返回类型,或者具有 MessageContractAttribute 和其他不同类型参数的类型。当使用 System.ServiceModel.Channels.Message 或带有 MessageContractAttribute 的类型时,该方法不得使用任何其他类型的参数。

这是我的合同:

[ServiceContract]
public interface IFile
{
    [OperationContract]
    bool UploadFile(FileUpload upload);
}
[MessageContract]
public class FileUpload
{
    [MessageHeader(MustUnderstand = true)]
    public int Username { get; set; }
    [MessageHeader(MustUnderstand = true)]
    public string Filename { get; set; }
    [MessageBodyMember(Order = 1)]
    public Stream ByteStream { get; set; }
}

这是我在 app.config 中使用的绑定配置:

  <netTcpBinding>
    <binding name="TCPConfiguration" maxReceivedMessageSize="67108864" transferMode="Streamed">
      <security mode="None" />
    </binding>
  </netTcpBinding>

现在我在想这可能与我正在使用的绑定类型有关,但我并不完全确定。

4

2 回答 2

7

从评论看来,您遇到的问题是,一旦开始使用消息协定,您必须将它们用于所有参数,这意味着您的方法无法返回 bool,它必须返回另一个消息协定,例如 FileUploadResult。

尝试将其更改为返回 void 并查看它是否加载以及是否确实将其更改为返回一个属性为消息协定的类。

此 MSDN 页面上的第一个注释警告此问题,并包含一个可能提供更多信息的链接。

于 2011-05-24T06:26:53.507 回答
0

这基本上意味着特定操作正在使用以下任何组合中的消息协定类型和原始类型的组合:

MixType1: Contract type and primitive types as operation parameters
MixType2: Contract type as a parameter and primitive type as return type
MixType3: Primitive type as a parameter and Contract type as return type

上面列出的任何情况都会产生错误。

更多详情: http: //www.codeproject.com/Articles/199543/WCF-Service-operations-can-t-be-loaded-due-to-mixi

于 2014-04-10T18:38:39.583 回答