2

我有一个应用程序正在调用我在本地 IIS 服务器上托管的一些 WCF 服务。IIS 服务器运行 ASP.NET 4.0 经典版本,服务是使用 .NET 4.0 开发的。客户端正在运行 Windows Compact Framework 3.5,并使用该NetCFSvcUtil实用程序自动生成服务客户端。

当我尝试在我的应用程序中调用客户端可用的方法之一时,我收到以下异常:

ProtoccolException: The remote server returned an unexpected response: (501) Not Implemented.

谁能指出我为什么会收到此错误的方向?我调用的所有方法都提供了一个实现。

堆栈跟踪:

System.ServiceModel.ProtocolException was unhandled
  Message="The remote server returned an unexpected response: (501) Not Implemented."
  StackTrace:
       at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)
       at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message)
       at ClientProject.Microsoft.Tools.ServiceModel.CFClientBase`1.getReply(Message msg)
       at ClientProject.Microsoft.Tools.ServiceModel.CFClientBase`1.Invoke[TREQUEST,TRESPONSE](CFInvokeInfo info, TestMethodRequest request)
       at ClientProject.TestService.MQClient.TestMethod(TestMethodRequest request)
       at ClientProject.TestService.MQClient.TestMethod(TestInfo testInfo)
       at ClientProject.Form.Button1_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.ButtonBase.WnProc(WM wm, Int32 wParam, Int32 lParam)
       at System.Windows.Forms.Control._InternalWnProc(WM wm, Int32 wParam, Int32 lParam)
       at Microsoft.AGL.Forms.EVL.EnterMainLoop(IntPtr hwnMain)
       at System.Windows.Forms.Application.Run(Form fm)
       at ClientProject.Form.Main()
  InnerException: System.Net.WebException
       Message="The remote server returned an error: (501) Not Implemented."
       StackTrace:
            at System.Net.HttpWebRequest.finishGetResponse()
            at System.Net.HttpWebRequest.GetResponse()
            at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
            at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
            at System.ServiceModel.Channels.RequestChannel.Request(Message message)
            at ClientProject.Microsoft.Tools.ServiceModel.CFClientBase`1.getReply(Message msg)
            at ClientProject.Microsoft.Tools.ServiceModel.CFClientBase`1.Invoke[TREQUEST,TRESPONSE](CFInvokeInfo info, TestMethodRequest request)
            at ClientProject.TestService.MQClient.TestMethod(TestMethodRequest request)
            at ClientProject.TestService.MQClient.TestMethod(TestInfo testInfo)
            at ClientProject.Form.Button1_Click(Object sender, EventArgs e)
            at System.Windows.Forms.Control.OnClick(EventArgs e)
            at System.Windows.Forms.Button.OnClick(EventArgs e)
            at System.Windows.Forms.ButtonBase.WnProc(WM wm, Int32 wParam, Int32 lParam)
            at System.Windows.Forms.Control._InternalWnProc(WM wm, Int32 wParam, Int32 lParam)
            at Microsoft.AGL.Forms.EVL.EnterMainLoop(IntPtr hwnMain)
            at System.Windows.Forms.Application.Run(Form fm)
            at ClientProject.Form.Main()
       InnerException: 

在我的服务上运行会WCF Test Client产生以下最内部的异常:

Failed to invoke the service. Possible causes: The service is offline or inaccessible; the client-side configuration does not match the proxy; the existing proxy is invalid. Refer to the stack trace for more detail. You can try to recover by starting a new proxy, restoring to default configuration, or refreshing the service.


An error occurred while receiving the HTTP response to http://wv113.domain.local/Development/TestService.svc. 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.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 IMQClient.TestMethod(TestInfo testInfo)
   at MQClient.TestMethod(TestInfo testInfo)

Inner Exception:
The underlying connection was closed: An unexpected error occurred on a receive.
   at System.Net.HttpWebRequest.GetResponse()
   at System.ServiceModel.Channels.HttpChannelFactory.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

1 回答 1

3

这意味着您尝试执行的方法未在 WCF 服务器端实现。这是你写的吗?

抛出此异常的方法示例:

public void UnimplementedMethod()
{
    throw new NotImplementedException();
}

这通常是通过实现类继承的接口自动生成的方法的默认标记。

编辑:

要确保在 Web 服务端实现该方法,请转到 Visual Studio 命令提示符并键入 wcftestclient。应用程序启动后,将服务引用添加到要测试的 wcf 并从那里执行该方法,以确保它按预期运行。

于 2012-06-19T19:28:29.963 回答