Web服务端点错误的地址

时间:2011-08-17 11:45:48

标签: c#

<services>
    <service name="WebServices.Service" behaviorConfiguration="WebServices.ServiceBehavior">
        <!-- Service Endpoints -->
        <endpoint address="http://ip/Service.svc" binding="wsHttpBinding" contract="WebServices.IService">
            <identity>
               <dns value="localhost" />
            </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
    </service>
</services>

但我的终点仍然是

svcutil.exe http://server-iis/Service.svc?wsdl。如何将server-iis更改为我的IP?

1 个答案:

答案 0 :(得分:1)

尝试here中建议的解决方案。

我不确定,但我希望这个建议可以帮助你。