我在双工协议上制作了WCF服务。 它的工作正常而且很好。但我只有一个小问题:
这是一个IP字符串,我可以在哪里开始测试: http://localhost:5659/Service.svc
但是当我在本地计算机上选择我的真实IP地址时(localhost存在): http://93.4.18.3:5659/Service.svc
我还不能说。此外,我无法使用我的真实IP地址从其他地址连接。 我的web.config可能有问题吗?
顺便说一句 - 我的防火墙如果关闭了。
这是我的配置:
<extensions>
<bindingElementExtensions>
<add name="pollingDuplex" type="System.ServiceModel.Configuration.PollingDuplexElement, System.ServiceModel.PollingDuplex" />
</bindingElementExtensions>
</extensions>
<behaviors>
<serviceBehaviors>
<behavior name="GameStreamServiceBehavior">
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceThrottling maxConcurrentSessions="2147483647" />
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<customBinding>
<binding name="pollingDuplexBinding">
<binaryMessageEncoding />
<pollingDuplex maxPendingSessions="2147483647" maxPendingMessagesPerSession="2147483647" inactivityTimeout="02:00:00" serverPollTimeout="00:05:00" />
<httpTransport />
</binding>
</customBinding>
</bindings>
<services>
<service name="WcfServer.Service" behaviorConfiguration="GameStreamServiceBehavior">
<endpoint address="" binding="customBinding" bindingConfiguration="pollingDuplexBinding" contract="WcfServer.IService" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
答案 0 :(得分:1)
您应该检查IIS中的网站绑定。端口5659上的HTTP绑定可能仅针对特定主机头(“localhost”)或特定IP地址(不是93.4.18.3)进行配置。这可以解释你的行为。