gpt4 book ai didi

wcf - WCF 上的一项服务、多个端点、多个绑定(bind)。为什么我无法到达我的端点?

转载 作者:行者123 更新时间:2023-12-03 23:57:08 25 4
gpt4 key购买 nike

我有一个由 IIS 运行的 WCF 服务。我想创建两个使用相同服务的不同客户端(WPF 和 WP7)。 WPF 客户端已经使用 wsHttpBinding 使用端点。和 https .可悲的是 WP7 没有做 wsHttpBinding , 仅 BasicHttpBinding .所以我想我会为两者公开不同的端点,这样他们就可以访问相同的服务,但使用不同的绑定(bind),什么不是......

所以这是我在 IIS 上的 Web.config:

<configuration>

<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="TransportSecurity">
<reliableSession enabled="true" />
<security mode="TransportWithMessageCredential" >
<transport clientCredentialType="None"/>
</security>
</binding>
</wsHttpBinding>
<basicHttpBinding>
<binding name="BasicTransportSecurity">
<security mode="Transport">
<transport clientCredentialType="None"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="SmartCook2.Server.ISmartCookServiceBehavior">
<serviceMetadata httpGetEnabled="false" httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
<services>
<service behaviorConfiguration="SmartCook2.Server.ISmartCookServiceBehavior"
name="SmartCook2.Server.SmartCookService">
<endpoint address="WS" binding="wsHttpBinding" bindingConfiguration="TransportSecurity"
name="WS" contract="SmartCook2.Server.ISmartCookService" />
<endpoint address="Basic" binding="basicHttpBinding" bindingConfiguration="BasicTransportSecurity"
name="Basic" contract="SmartCook2.Server.ISmartCookService" />
<endpoint address="mex" binding="mexHttpsBinding" name="mex"
contract="IMetadataExchange" />
</service>
</services>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
<connectionStrings>
<add name="SmartCookDBEntities" connectionString="metadata=res://*/SmartCookContext.csdl|res://*/SmartCookContext.ssdl|res://*/SmartCookContext.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=RENDERBETYAR;initial catalog=SmartCookDB;integrated security=True;pooling=False;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
</connectionStrings>

</configuration>

现在,如果我做对了,端点应该可以通过以下地址访问:
https://localhost/IISHostedSmartCook/SmartCookService.svc/Basic
https://localhost/IISHostedSmartCook/SmartCookService.svc/WS
https://localhost/IISHostedSmartCook/SmartCookService.svc/mex

如果我在浏览器中检查它们,我什么也得不到。也不异常(exception),但也没有内容。使用基地址(直到 .svc 部分)我得到默认服务页面,我可以访问 wsdl,它是有效的。据我所知,它具有正确的端点、我的服务方法等。

如果我尝试将 ServiceReference 添加到我的 WP7 项目是 Visual Studio,我只能在基地址下看到我的服务(特定端点地址不返回任何内容)。如果我添加它,则生成的类是正确的,只是我无法调用我的任何服务方法,并且我收到错误消息“在此地址没有监听端点”。 (如果我使用需要端点名称的服务客户端的构造函数,也会发生这种情况。)

我究竟做错了什么?

最佳答案

查看here详细解释。

您需要指定的是 endpoints 中的地址。 :

  <service behaviorConfiguration="SmartCook2.Server.ISmartCookServiceBehavior"
name="SmartCook2.Server.SmartCookService">
<endpoint address="http://localhost/Service.svc/WS" binding="wsHttpBinding" bindingConfiguration="TransportSecurity"
name="WS" contract="SmartCook2.Server.ISmartCookService" />
<endpoint address="http://localhost/Service.svc/Basic" binding="basicHttpBinding" bindingConfiguration="BasicTransportSecurity"
name="Basic" contract="SmartCook2.Server.ISmartCookService" />
<endpoint address="" binding="mexHttpsBinding" name="mex"
contract="IMetadataExchange" />
</service>

关于wcf - WCF 上的一项服务、多个端点、多个绑定(bind)。为什么我无法到达我的端点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7883191/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com