我通过使用“添加服务引用”功能从VSTS2008(C#控制台应用程序,使用.Net 3.5)引用在同一LAN中的另一台计算机中添加对IIS 7.0中托管的WCF服务的引用。我发现自动生成的客户端app.config非常奇怪。这是内容,
我的困惑是终点地址是“http://labtest1/WcfDemo/service.svc/10.10.200.10/wcfDemo”,但实际上它应该是“http://labtest1/WcfDemo/service.svc”(我可以在IE中使用http://labtest1/WcfDemo/service.svc从WCF托管机器labtest1获取WSDL)。但我无法通过使用地址“http://labtest1/WcfDemo/service.svc/10.10.200.10/wcfDemo”从IE获取WSDL。机器labtest1的内部IP地址为10.10.200.10。有什么想法有什么不对?
BTW:但客户端功能正常工作,即对WCF端点方法的调用可以返回预期结果。 “错误的”端点地址如何返回正确的结果?
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IOrderManagement" 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://labtest1/WcfDemo/service.svc/10.10.200.10/wcfDemo"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IOrderManagement"
contract="ServiceReference1.IOrderManagement" name="BasicHttpBinding_IOrderManagement" />
</client>
</system.serviceModel>
</configuration>
编辑1:
这是我在IIS 7.0端使用的配置文件(web.config)。我将service.svc放在机器labtest1的默认网站(端口80)的WcfDemo子目录下。我认为正确的端点地址应该是“http://labtest1/WcfDemo/service.svc”而不是“http://labtest1/WcfDemo/service.svc/10.10.200.10/wcfDemo”?
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
<service behaviorConfiguration="Foo.ServiceBehavior"
name="Foo.OrderManagement">
<endpoint address="" binding="basicHttpBinding" contract="Foo.IOrderManagement" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="Foo.ServiceBehavior">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
您需要保留两个URL:
这些可能会有所不同!仅仅因为你可以从http://labtest1/WcfDemo/service.svc
检索WSDL并不意味着服务可以在那里调用。
但我同意 - 配置文件看起来很奇怪....然后再说,“添加服务参考”功能并不知道创建伟大的配置....
我的建议:尝试使用WcfTestClient.exe(您可以在“程序文件\ Microsoft Visual Studio 9.0 \ Common7 \ IDE”目录中找到)连接到您的服务,并查看返回的内容。
要发现服务,您需要输入您可以在其中找到WSDL的地址 - 例如http://labtest1/WcfDemo/service.svc
。这个测试客户端找到了哪些端点?
渣
我已经看到,当WCF服务托管在域内的服务器上时会发生这种情况。该实用程序似乎使内联网URL而不是互联网URL。