Advertisement
Guest User

Untitled

a guest
Dec 18th, 2013
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.44 KB | None | 0 0
  1. An error occurred while receiving the HTTP response to http://localhost:8090/ShowService. 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.
  2.  
  3. Server stack trace:
  4.    at System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
  5.    at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
  6.    at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
  7.    at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
  8.    at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
  9.    at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
  10.    at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
  11.  
  12. Exception rethrown at [0]:
  13.    at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
  14.    at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
  15.    at IControllerOf_Show.Get(Int32 ID)
  16.    at ControllerOf_ShowClient.Get(Int32 ID)
  17.  
  18. Inner Exception:
  19. The underlying connection was closed: An unexpected error occurred on a receive.
  20.    at System.Net.HttpWebRequest.GetResponse()
  21.    at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
  22.  
  23. Inner Exception:
  24. Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
  25.    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
  26.    at System.Net.PooledStream.Read(Byte[] buffer, Int32 offset, Int32 size)
  27.    at System.Net.Connection.SyncRead(HttpWebRequest request, Boolean userRetrievedStream, Boolean probeRead)
  28.  
  29. Inner Exception:
  30. An existing connection was forcibly closed by the remote host
  31.    at System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags)
  32.    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement