如何在企业网络中通过代理服务器使用 MS Azure AppFabric

发布于 2024-09-14 07:22:36 字数 219 浏览 11 评论 0原文

我正在通过运行 AppFabric SDK 示例 (WindowsAzurePlatformAppFabricSDKSamples_V1.0-CS) 中的 Echo 服务示例来测试我们公司网络中的服务总线 AppFabric。然而,代码似乎挂在了 host.Open() 处,并且没有抛出异常。

我让程序运行了几个小时,但它仍然挂在该行,没有例外。

有人对此有提示吗?

谢谢。

I'm testing the Service Bus AppFabric within our corporate network by runnng the Echo service sample from the AppFabric SDK samples (WindowsAzurePlatformAppFabricSDKSamples_V1.0-CS). However, the code seems to hang at the host.Open(), and no exceptions being thrown.

I left the program running like hours but it's still hung at that line with no exceptions.

Does anyone have a hint about this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜妞爱困 2024-09-21 07:22:36

今天也一直在为此苦苦挣扎。您可以在配置中添加以下内容:

  <system.net>
    <defaultProxy useDefaultCredentials="true">
      <proxy proxyaddress="http://xyz:8080"  usesystemdefault="True"/>
      <module type="ServiceBusHost.CustomProxy, ServiceBusHost"/>
    </defaultProxy>
  </system.net>

不幸的是,这并不适用于所有情况。

Have been struggling with this today as well. You can add the following in your config:

  <system.net>
    <defaultProxy useDefaultCredentials="true">
      <proxy proxyaddress="http://xyz:8080"  usesystemdefault="True"/>
      <module type="ServiceBusHost.CustomProxy, ServiceBusHost"/>
    </defaultProxy>
  </system.net>

Unfortunately this does not work in all cases.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文