WCF:是否可以在双工通道中使用流模式?

时间:2009-01-07 14:50:42

标签: wcf streaming duplex

在WCF中,合同可以切换到流模式,以传输大量消息。

在阅读和测试之后,在我看来,流模式不能用于双工通道(具有OneWay呼叫和回调接口的通道)。

这是这样吗?双工和流媒体不能互相使用吗?或者有办法吗?

(我正在尝试将大文件上传到服务并使用回调来报告此进度)

2 个答案:

答案 0 :(得分:5)

要将文件从客户端加载到服务器,您可以使用以下代码:service

 [ServiceContract(SessionMode=SessionMode.Required, CallbackContract=typeof(IFreeBoxServiceCallBack))]
    public interface IFreeBoxService
    {
        [OperationContract(IsOneWay = true)]
        void sendFile(byte[] bytes, int offset, int count);

        [OperationContract(IsOneWay = true)]
        void sendFileName(string fileName);
    }

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode=ConcurrencyMode.Multiple)]
    public class FreeBoxService:IFreeBoxService
    {
        string path = "D:\\repository\\";
        string fileName = "";
        IFreeBoxServiceCallBack callBack = null;

        public FreeBoxService()
        {
            callBack = OperationContext.Current.GetCallbackChannel<IFreeBoxServiceCallBack>();
        }

        public void sendFileName(string fileName)
        {
            this.fileName = fileName;
        }

        public void sendFile(byte[] bytes, int offset, int count)
        {
            using (FileStream fileStream = new FileStream(path + fileName, FileMode.Append, FileAccess.Write))
            {
                fileStream.Write(bytes, offset, count);
                fileStream.Close();
                fileStream.Dispose();
            }
        }}

客户端:

private void sendFileToServer()
        {
            FileStream fs = new FileStream(fullName,FileMode.Open,FileAccess.Read);
            int bytesRead = 0;
            bytes = new byte[15000];

            proxy.sendFileName("someFile.xml");

            while ((bytesRead = fs.Read(bytes, 0, 15000))>0)
            {
                proxy.sendFile(bytes, 0, bytesRead);
            }
            fs.Close();
            fs.Dispose();
        }

的.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <services>
      <service name="FreeBoxServiceLib.FreeBoxService" behaviorConfiguration="MyServiceBehevior">
        <endpoint address="" contract="FreeBoxServiceLib.IFreeBoxService"
                  binding="netTcpBinding">
        </endpoint>
        <endpoint address="MEX" binding="mexTcpBinding" contract="IMetadataExchange"/>
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:8080/FreeBoxService/"/>
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="MyServiceBehevior">
          <serviceMetadata />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>

总是更好地传递一个字节数组。我想,不需要描述回调函数吗?

答案 1 :(得分:2)

出于好奇,我即将开始对你的问题进行一些测试,但谷歌向我展示了两个可能更好地回答你问题的样本。

This CodeProject example显示带有进度条的流式文件传输,而不使用双工通道。

This sample显示了更多相同但有一些不同的流处理。

此外,WCF相关的所有事情的真正优质资源是iDesgin.net。主要人物是Juval Lowy撰写了一些关于WCF的最佳书籍。他们有许多可以下载的优秀WCF示例(尽管他们烦人地询问您的每个电子邮件地址)。更重要的是,他们还编写了一个ServiceProcessEx类,它极大地扩展了ServiceProcess的功能,特别是在双工通道方面。 (我不确定它是否会对流媒体做很多事情......这不是我已经完成的事情。)

希望其中一些对您有所帮助。