1

こんにちは皆さん、私はWCFを使用してサービスを作成しましたが、サービスをテストすると、一部が正常に完了したため、以下のエラーが発生する場合があります。これらを解決する方法についてのアイデアはありますか?ありがとう

An error occurred while receiving the HTTP response to http://localhost:8733/PortOperation/Operator_Service/ws. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details.

Server stack trace: 
at System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
at System.ServiceModel.Channels.ClientReliableChannelBinder`1.RequestClientReliableChannelBinder`1.OnRequest(TRequestChannel channel, Message message, TimeSpan timeout, MaskingMode maskingMode)
at System.ServiceModel.Channels.ClientReliableChannelBinder`1.Request(Message message, TimeSpan timeout, MaskingMode maskingMode)
at System.ServiceModel.Channels.ClientReliableChannelBinder`1.Request(Message message, TimeSpan timeout)
at System.ServiceModel.Security.SecuritySessionClientSettings`1.SecurityRequestSessionChannel.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 IOperator_Service.GetAllUser(String ConnectionString)
at Operator_ServiceClient.GetAllUser(String ConnectionString)

Inner Exception:
The underlying connection was closed: An unexpected error occurred on a receive.
at System.Net.HttpWebRequest.GetResponse()
at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)

Inner Exception:
Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Read(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.Connection.SyncRead(HttpWebRequest request, Boolean userRetrievedStream, Boolean probeRead)

Inner Exception:
An existing connection was forcibly closed by the remote host
at System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags)
at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
4

2 に答える 2

5

このタイプのエラーが発生するシナリオはたくさんあります。

初め

適切な[DataContract]と[DataMember]を提供したことを確認してください。これが提供されていない場合、このタイプのエラーが発生します。応答で渡すクラスの上に[DataContract]を書き込み、クライアント応答に入るクラスメンバーの上に[DataMember]を書き込む必要があります。

例えば。

[DataContract]
class Program
{
  [DataMember] 
  public string Example{get;set}
}

2番

データ型の最小値が渡された場合は、応答を確認してください。つまり、ある時点でデータメンバーが初期化されず、その時点で最小値が取得されます。たとえば、intのminValueは「-2147483648」であるため、シリアル化できず、エラーがスローされる場合があります。

このタイプのエラーを追跡する場合は、サーバー側のweb.configに次のコードを追加します

<system.diagnostics>
 <sources>
  <source name="System.ServiceModel" switchValue="Information, ActivityTracing"    propagateActivity="true">
   <listeners>
     <add name="traceListener" type="System.Diagnostics.XmlWriterTraceListener"      initializeData= "D:\Traces.svclog"/>
   </listeners>
  </source>
 </sources>
</system.diagnostics>

私はそれがあなたを助けると思います。

于 2013-03-02T10:23:02.407 に答える
2

私はその問題を解決することができました。

EFの「コードファースト」アプローチを使用していて、WCFを使用してデータにアクセスする場合は、WCFシリアル化では動的プロキシデータをシリアル化できないため、pocoクラスで「virtual」キーワードを使用して遅延読み込みを有効にしないことを検討してください。

于 2013-03-02T23:07:34.530 に答える