Azure服务总线到WCF

本文关键字:WCF 总线 服务 Azure | 更新日期: 2023-09-27 18:22:17

我在尝试运行将连接到Azure服务总线的WCF REST服务时遇到问题。我的web.config包含以下内容:

<system.serviceModel>
<services>
<service name="helloSB.SomeService">
<endpoint contract="helloSB.ISomeService"
binding="webHttpRelayBinding"
address = "" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:7200/mySB/helloSB.SomeService/" />
</baseAddresses>
</host>

每当我尝试向WCF发送消息时,我都会收到:由于编译过程中出现异常,无法激活服务/mySB/SomeService.svc。异常为:无法通过TCP(93519352)或HTTP(80443)访问本地主机。

为什么我不能使用非标准端口?

Azure服务总线到WCF

看起来这些问题与一些端口问题有关。以下链接提供了有关故障排除步骤的其他详细信息。http://social.technet.microsoft.com/wiki/contents/articles/2055.troubleshooting-connectivity-issues-in-the-azure-appfabric-service-bus.aspx