2010-08-12 53 views
1

我正在通過運行來自AppFabric SDK示例(WindowsAzurePlatformAppFabricSDKSamples_V1.0-CS)的Echo服務示例測試我們公司網絡內的Service Bus AppFabric。但是,代碼似乎掛在host.Open(),並且沒有任何異常被拋出。如何通過公司網絡中的代理服務器使用MS Azure AppFabric

我離開程序像小時運行,但它仍然掛在那條線,沒有例外。

有沒有人有關於此的提示?

謝謝。

回答

1

今天也一直在努力。您可以在配置中添加以下內容:

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

不幸的是,這並不適用於所有情況。

相關問題