Byte [] / stream通过namedPipe WCF出现故障

时间:2016-09-19 08:21:28

标签: c# wcf named-pipes

我正在开发一个namedpipe Duplex WCF服务。

对于基本的东西,客户端和服务器正在进行通信而没有问题。服务器可以回调给他发送字符串的客户端,它没有任何问题。 但是,当我希望它发送带有byte []或stream的位图时,一切都是错误的。请注意我试图使用流,因为byte []不起作用... 在服务器端,生成byte [] / stream没有问题。 但是当服务器将byte [] / stream发送到客户端时,如果byte [] / stream为空,则它会通过但是当它有数据时它会出错。

我已经检查了所有配置,并尝试设置一个大缓冲区/消息/ poolsize / stringcontent / arraylenght / byteperread /无论大小/长度,因为我知道这是WCF中的经典问题。

这是我的WCF配置文件主要部分的C / P.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.web>
    <compilation debug="true"/>
  </system.web>
  <system.serviceModel>
    <bindings>
      <netNamedPipeBinding>
        <binding name="NamedPipeBinding_ICameraService" closeTimeout="00:05:00" openTimeout="00:20:00" receiveTimeout="00:20:00" sendTimeout="00:20:00" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" maxConnections="10" maxBufferPoolSize="500000000" maxBufferSize="500000000" maxReceivedMessageSize="500000000">
          <readerQuotas maxDepth="32" maxStringContentLength="500000000" maxArrayLength="500000000" maxBytesPerRead="500000000" maxNameTableCharCount="500000000"/>
          <security mode="Transport"/>
        </binding>
      </netNamedPipeBinding>
    </bindings>
    <services>
      <service name="EOSDigital.CameraService" behaviorConfiguration="MEX">
        <endpoint address="net.pipe://localhost/EOSDigital/CameraService" binding="netNamedPipeBinding" bindingConfiguration="NamedPipeBinding_ICameraService" contract="EOSDigital.ICameraService"/>

        <endpoint address="net.pipe://localhost/EOSDigital/CameraService/mex" binding="mexNamedPipeBinding" contract="IMetadataExchange"/>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="MEX">
          <serviceMetadata httpGetEnabled="False"/>
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

这是服务回调合约

[ServiceContract]
public interface ICameraServiceCallBack
{
    [OperationContract(IsOneWay = true)]
    void CallBackFunction(string str);

    [OperationContract(IsOneWay = true)]
    void LiveviewUpdated(byte[] img);
}

这是我的服务合同的声明。

[ServiceContract(CallbackContract = typeof(ICameraServiceCallBack))]
public interface ICameraService

我不会放一切,这太大了。

这就是我使用它的方式

private void CurrentCamera_LiveViewUpdated(object sender, Stream img)
{
    MemoryStream data = new MemoryStream();
    img.CopyTo(data);

    _callback = OperationContext.Current.GetCallbackChannel<ICameraServiceCallBack>();

    _callback.CallBackFunction("this is a test"); // ok

    _callback.LiveviewUpdated(data.ToArray()); //Faulted
}

我从佳能数码相机获得了Stream,它大约是字节[146242]。当我发送一个字节[10]它的工作原理。 它必须是一个大小的问题,我想我错过了配置文件中的一些东西......

我还尝试生成并查看我的服务的scvclog文件,以查看发生的故障异常的一些细节。 但是,嗯......一行中不少于50k个字符。这是不可读的。

谢谢。

1 个答案:

答案 0 :(得分:1)

检查您的客户端WCF配置。 您的客户端配置必须与主机具有相同的netNamedPipeBinding。

将其放入您的客户端配置文件

<netNamedPipeBinding>
  <binding name ="duplexEndpoint" closeTimeout="00:05:00" openTimeout="00:20:00" receiveTimeout="00:20:00" sendTimeout="00:20:00" transactionProtocol="OleTransactions"
          hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="50000000" maxBufferSize="50000000" maxConnections="10" maxReceivedMessageSize="50000000">
    <readerQuotas maxDepth="32" maxStringContentLength="50000000" maxArrayLength="50000000" maxBytesPerRead="50000000" maxNameTableCharCount="50000000"/>
  </binding>
</netNamedPipeBinding>

这必须放在serviceModel.Bindings括号旁边。

然后,绑定端点括号中的配置

bindingConfiguration="duplexEndpoint" 

这应该符合你的预期。