3

我需要一个 WCF 服务操作,它接受一个大流,处理它并返回该流。

我使用了一篇关于大数据流的 MSDN 文章作为我需要的参考。我听从了那篇文章中的建议。

提前问问题:

  1. 我想知道为什么我在合约中指定生成的服务操作没有返回类型?

  2. 如果这是预期的行为,我应该如何让它传递一个流并返回一个处理过的流?

详情

因为我需要使用 MetaData 来伴随输入和返回流,所以我根据需要使用 MessageContract 属性装饰了这些类。

这是我的实现的简要介绍:

消息合约:

[MessageContract]
public class InputStreamMessage
{
    [MessageHeader]
    public InputStreamHeader Header { get; set; }

    [MessageBodyMember(Order = 1)]
    public Stream Data { get; set; }

}

[MessageContract]
public class OutputStreamMessage
{
    [MessageHeader]
    public OutputStreamHeader Header { get; set; }

    [MessageBodyMember(Order = 1)]
    public Stream Data { get; set; }

}

服务合同:

[ServiceContract]
public interface IStreamService
{
    [OperationContract]
    OutputStreamMessage ProcessStream(InputStreamMessage input);
}

服务实施:

 public OutputStreamMessage DoStreamOperation(InputStreamMessage input)
 {
    //Some logic that assigns re
    OutputStreamMessage output = DoSomeNonBufferedProcessing(input);

    return output;
 }

客户端:

在客户端,然后生成服务引用,并按如下方式调用服务:

private void PerformStreamOperation()
{
    try
    {
        //
        StreamServiceReference.StreamServiceClient client = new StreamServiceReference.StreamServiceReferenceClient();
        client.Open();

        //Set Header and Parameters
        InputMessageHeader header = new InputMessageHeader();

        //...                
        //... initialize header data here
        //...                

        //... do some operation to get input stream
        var inputstream = SomeOperationToGetInputStream();

        //Perform Service stream action
        //         ____ [ Why does the generated method have the following signature, retuning void?]
        //        |     [ If this is expected, how do I use it? ]
        //        |
        //        V 
        client.DoStreamOperation(header, ref inputstream); 


        //...                
        //... Do what you wish with data
        //...                

    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message.ToString(), "Stream Processing Error");
    }
}

MSDN 文章使用的合同与官方 WCF 示例中的合同完全相同。

Stream EchoStream(流数据)

但是没有等效 MessageContract 实现的示例。示例版本具有预期回报。

更新

  • 我注意到服务引用具有使用预期方法签名生成的任务/异步方法。也许这意味着当使用带有 Stream 属性的 MessageContract 时,返回一个类似结构的对象,那么您将不得不异步调用它。我没有在任何地方看到它记录在案。将尝试使用这些方法 -没有工作,因为我们想要同步操作。
  • 我还尝试使用ChannelFactory替代生成的代理客户端:

      EndpointAddress endpoint = new EndpointAddress("net.tcp://localhost:9910/StreamService");
    
      channelFactory = new ChannelFactory<IStreamService>("netTcpStreamedEndPoint");
      channelFactory.Endpoint.Contract.SessionMode = SessionMode.Allowed;
      IStreamService service = channelFactory.CreateChannel();
    
4

1 回答 1

2

我很抱歉在回答中回复(我没有评论的声誉)。

我正在从事与您类似的项目-我有服务,可以接受大量数据流(使用 MessageContracts),对其进行处理,然后客户端可以下载这些数据。

首先 - 输入参数位于:

 client.DoStreamOperation(header, ref inputstream); 

显示,您似乎没有生成包含 MessageContracts 的服务代理(请参阅http://blogs.msdn.com/b/zainnab/archive/2008/05/13/windows-communication-foundation-wcf-what-the -hell-is-always-generate-message-contracts.aspx)。那应该在客户端为您提供 OutputStreamMessage 和 InputStreamMessage 合同。

正确生成 messageContracts 后,我可以在我的代码中编写这两个,而不会收到编译错误:

client.DoStreamOperation(inputStreamMessage)

   StreamServiceReference.StreamServiceClient.OutputStreamMessage outputMessage = client.DoStreamOperation(inputStreamMessage)

但基本上第一个没有用。当然,我必须先创建 InputStreamMessage 对象:

StreamServiceReference.StreamServiceClient.InputStreamMessage inputStreamMessage = new StreamServiceReference.StreamServiceClient.InputStreamMessage();

如果您愿意,我可以发布一些我的 MessageContracts 示例。

另外,请看这篇文章: http: //www.codeproject.com/Articles/166763/WCF-Streaming-Upload-Download-Files-Over-HTTP。我的消息合同在项目的早期阶段看起来很相似


编辑:会话模式设置如下:

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple)]

原因是我需要维护有关对象的信息(状态),这对于多个客户端来说很常见。但这不应该影响流媒体。

这是我的绑定。我使用基本的http:

      <basicHttpBinding>
        <binding name="TransferBinding" transferMode="Streamed" maxReceivedMessageSize="10067108864">
        </binding>
      </basicHttpBinding>

对于上传,我使用这种消息合同:

    [MessageContract]
        public class RemoteFileInfo : IDisposable
        {
            [MessageHeader(MustUnderstand = true)]
            public string FileName;

            [MessageBodyMember]
            public System.IO.Stream FileByteStream;
}

这是在客户端定义的方法主体,调用 StartUpload() 在服务端定义(您需要定义指向您要上传的文件的 filePath):

using (System.IO.FileStream stream = new System.IO.FileStream(filePath, FileMode.Open, FileAccess.Read))
        {
                           // start service client
                CalculationServiceClient client = new CalculationServiceClient();     

                RemoteFileInfo remoteFileInfo = new RemoteFileInfo(); ;
                remoteFileInfo.FileName = TextBox1.Text;
                remoteFileInfo.FileByteStream = stream;

                // upload file
                client.StartUpload(remoteFileInfo);

                // close service client
                client.Close();
                uploadStream.Close();
            }
        }

然后,我在服务端定义 StartUpload() operationContract。StartUpload 合约的内部看起来像这样:

public void StartUpload(RemoteFileInfo fileInfo)
        {

            string filePath = define your filePath, where you want to save the file;           

            int chunkSize = 2048;
            byte[] buffer = new byte[chunkSize];

            using (System.IO.FileStream writeStream = new System.IO.FileStream(filePath, System.IO.FileMode.CreateNew, System.IO.FileAccess.Write))
            {
                do
                {
                    // read bytes from input stream (provided by client)
                    int bytesRead =  fileInfo.FileByteStream.Read(buffer, 0, chunkSize);
                    if (bytesRead == 0) break;

                    // write bytes to output stream
                    writeStream.Write(buffer, 0, bytesRead);
                } while (true);

                writeStream.Close();
            }
        }
于 2015-03-16T13:57:07.630 回答