通过https将大量数据从客户端上传到WCF服务

时间:2012-09-08 17:53:09

标签: wcf ssl wcf-security isaserver

我正在研究使用HTTPS通过WCF Web服务将大量数据上传到服务器的解决方案。我的基础设施设计如下:

客户端应用程序< - HTTPS - > ISA服务器< - HTTP - > WCF Web服务

在IIS6,Windows server 2003上托管的Web服务。我使用basicHttpBindings。 当我开始上传2MB数据时,我会收到: https://myservice.com/WcfService/service.svc/basic发出HTTP请求时发生错误。这可能是由于在HTTPS情况下未使用HTTP.SYS正确配置服务器证书。这也可能是由于客户端和服务器之间的安全绑定不匹配造成的

但是当我尝试上传100Kb时,一切正常。为什么?请提出任何建议。

完整的异常消息:

System.ServiceModel.CommunicationException未处理

Message =向https://myservice.com/WcfService/service.svc/basic发出HTTP请求时发生错误。这可能是由于在HTTPS情况下未使用HTTP.SYS正确配置服务器证书。这也可能是由于客户端和服务器之间的安全绑定不匹配造成的。

源= mscorlib程序

堆栈跟踪:

Server stack trace: 

   at System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)

   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)

   at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)

   at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)

   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)

   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)

   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]: 

   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)

   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)

   at ServiceWcfServiceMetadata.IServiceService.PutEmployeesCompressed(Transfer employees)

   at TestClient.ServiceService.PutEmployeesCompressed(Transfer employees) in C:\_WorkProjects\ServiceWCFIntegrationServices\TestClient\ServiceService.cs:line 61

   at TestClient.Program.Main(String[] args) in C:\_WorkProjects\ServiceWCFIntegrationServices\TestClient\Program.cs:line 60

   at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)

   at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)

   at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()

   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Threading.ThreadHelper.ThreadStart()

InnerException:System.Net.WebException

   Message=The underlying connection was closed: An unexpected error occurred on a send.

   Source=System

   StackTrace:

        at System.Net.HttpWebRequest.GetResponse()

        at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)

   InnerException: System.IO.IOException

        Message=Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host.

        Source=System

        StackTrace:

             at System.Net.Sockets.NetworkStream.MultipleWrite(BufferOffsetSize[] buffers)

             at System.Net.Security._SslStream.StartWriting(SplitWritesState splitWrite, SplitWriteAsyncProtocolRequest asyncRequest)

             at System.Net.Security._SslStream.ProcessWrite(BufferOffsetSize[] buffers, SplitWriteAsyncProtocolRequest asyncRequest)

             at System.Net.TlsStream.MultipleWrite(BufferOffsetSize[] buffers)

             at System.Net.Connection.Write(ScatterGatherBuffers writeBuffer)

             at System.Net.ConnectStream.ResubmitWrite(ConnectStream oldStream, Boolean suppressWrite)

        InnerException: System.Net.Sockets.SocketException

             Message=An existing connection was forcibly closed by the remote host

             Source=System

             ErrorCode=10054

             NativeErrorCode=10054

             StackTrace:

                  at System.Net.Sockets.Socket.MultipleSend(BufferOffsetSize[] buffers, SocketFlags socketFlags)

                  at System.Net.Sockets.NetworkStream.MultipleWrite(BufferOffsetSize[] buffers)

             InnerException:

客户端上的基本Http Bindigs配置:

<system.serviceModel>
<behaviors>
  <endpointBehaviors>
    <behavior name="BasicHttpBinding_IServiceServiceBehavior">
      <clientCredentials>
        <serviceCertificate>
          <authentication certificateValidationMode="None"/>
        </serviceCertificate>
      </clientCredentials>
    </behavior>
  </endpointBehaviors>
</behaviors>
<bindings>
  <basicHttpBinding>
    <binding name="BasicHttpBinding_IServiceService" closeTimeout="00:01:00"
      openTimeout="00:01:00" receiveTimeout="01:00:00" sendTimeout="01:00:00"
      allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
      maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
      messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true">
      <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
        maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
      <security mode="Transport">
        <transport clientCredentialType="Certificate" proxyCredentialType="None"
          realm="" />
      </security>
    </binding>
    <binding name="Local_IServiceService" closeTimeout="00:01:00"
      openTimeout="00:01:00" receiveTimeout="01:00:00" sendTimeout="01:00:00"
      allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
      maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
      messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true">
      <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
        maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
      <security mode="TransportCredentialOnly">
        <transport clientCredentialType="Windows" proxyCredentialType="None"
          realm="" />
      </security>
    </binding>
    <binding name="SecureBasic" maxBufferSize="100000000" maxBufferPoolSize="100000000"
      maxReceivedMessageSize="100000000">
      <readerQuotas maxDepth="100000000" maxStringContentLength="100000000"
        maxArrayLength="100000000" maxBytesPerRead="100000000" maxNameTableCharCount="100000000" />
      <security mode="Transport" />
    </binding>
  </basicHttpBinding>
</bindings>
<client>
  <endpoint address="https://myservice.com/WcfService/service.svc/basic"
    behaviorConfiguration="BasicHttpBinding_IServiceServiceBehavior"
    binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IServiceService"
    contract="ServiceWcfServiceMetadata.IServiceService" name="BasicHttpBinding_IServiceService" />
</client>

WCF Web服务配置:

<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="DefaultBasic" maxBufferSize="2147483647" maxBufferPoolSize="2147483647"
                maxReceivedMessageSize="2147483647" transferMode="Buffered">
                <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
                    maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
                <security mode="None">
                    <transport clientCredentialType="None" proxyCredentialType="None" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <standardEndpoints />
    <behaviors />
    <services>
        <service behaviorConfiguration="" name="ServiceWcfServiceApplication.ServiceService">
            <endpoint address="basic" binding="basicHttpBinding" bindingConfiguration="DefaultBasic"
                name="Basic" bindingName="" contract="ServiceWcfServiceMetadata.IServiceService" />
        </service>
    </services>
</system.serviceModel>

0 个答案:

没有答案