没有任何类似的问题对我有帮助。我相信这里的专家会......
我的问题是我正在托管WCF Rest服务,我只能在本地访问它。 LAN上的任何其他计算机都无法访问它。
这是我托管我的服务的方式(这在控制台应用程序中运行)
WebServiceHost host = new WebServiceHost(typeof(MyRestService), new Uri("http://Yaniv-PC:8080/Test"));
这是服务合同:
[ServiceContract]
public interface IMyRestService
{
[OperationContract]
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Xml,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "/{id}")]
string GetData(string id);
}
这是app.config文件(只有serviceModel部分)
<system.serviceModel>
<services>
<service behaviorConfiguration="MyRestServiceBehavior" name="ServiceHostApp.MyRestService">
<endpoint address="" binding="webHttpBinding" contract="ServiceHostApp.IMyRestService" behaviorConfiguration="web">
<identity>
<dns value="Yaniv-PC" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="MyRestServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="web">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
当我打开浏览器并导航到:http://yaniv-pc:8080/test/123
我明白了:
<?xml version="1.0"?>
<GetDataResponse xmlns="http://tempuri.org/">
<GetDataResult>You sent server 123</GetDataResult>
</GetDataResponse>
当我从局域网中的其他机器访问该服务时,我收到此错误:
System.ServiceModel.EndpointNotFoundException:没有端点 在
http://yaniv-pc:8080/Test/123
听,可以接受 信息。这通常是由错误的地址或SOAP操作引起的。 有关更多详细信息,请参阅InnerException(如果存在)。 ---&GT; System.Net.WebException:无法连接到远程服务器---&gt; System.Net.Sockets.SocketException:尝试了套接字操作 到一个无法访问的网络10.0.0.3:8080
有什么想法吗?
答案 0 :(得分:0)
假设您是自托管服务,请确保使用netsh命令注册了您的端口,如下所示:
netsh http add urlacl url=http://+:8080/ user=\everyone
同时尝试在禁用PC防火墙的情况下进行测试
答案 1 :(得分:0)
您应该尝试禁用防火墙或尝试添加带防火墙端口的规则。