无法在远程计算机上调用WCF服务

时间:2012-09-14 07:12:10

标签: c# .net wcf

我尝试从远程主机连接WCF,但是在错误上我发现它一直连接到localhost,但是即使我使用svcutil更改了ip地址,它仍然使用localhost而不是其他一些ip。什么似乎是问题?

这是我的配置:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_IService" closeTimeout="00:01:00"
                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                    allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                    useDefaultWebProxy="true">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <security mode="None">
                        <transport clientCredentialType="None" proxyCredentialType="None"
                            realm="" />
                        <message clientCredentialType="UserName" algorithmSuite="Default" />
                    </security>
                </binding>
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://192.168.2.1/MyService/Service.svc"
                binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService"
                contract="IService" name="BasicHttpBinding_IService" />
        </client>
    </system.serviceModel>
</configuration>

错误是:

  

http://localhost/Service/Service.svc没有可以接受该消息的端点。这通常是由错误的地址或SOAP操作引起的。有关更多详细信息,请参阅InnerException(如果存在)。

编辑:

我和先生一起去了。 Richard Blewett 的回答。我的app.config已经过时了。我感到困惑,因为我把我的Web服务放在一个单独的项目上,并没有意识到我的主要解决方案中的app.config存在。 谢谢大家!

0 个答案:

没有答案