远程服务器返回错误:(404)未找到IIS未使用

时间:2018-02-15 08:45:34

标签: c# wcf self-hosting

我的WCF服务是自托管的。 IIS未使用。 得到错误

tensorflow

请告知。

[WebException: The remote server returned an error: (404) Not Found.]

在浏览器上拨打服务:http://localhost:8001/HomServer
在客户端,我使用了WebRequest和WebResponse

Service.cs

    public string SayComment(string Message)
    {
        Console.WriteLine(" \n SayComment Message Captured : " + Message);
        return "    I commenting on you     \n  \n MessageVersion on this Server \n " + MessageVersion.Default.ToString();
    } 

IService.cs
    [OperationContract]
    string SayComment(string Message);

正在生成错误:[WebException:远程服务器返回错误:(404)Not Found。],而不是捕获响应。

0 个答案:

没有答案