我通过SDK使用Azure服务总线,一切正常,但我遇到的问题与代理相关。使用IE运行它一切正常,但如果它没有运行消息无法发送。我在代码中设置了代理,但是想知道我是否正确地为服务总线SDK
做了这个WebProxy proxy = new WebProxy(m_Config.ProxyAddress);
proxy.Credentials = new NetworkCredential(ProxyUser, ProxyPassword, ProxyDomain);
WebRequest.DefaultWebProxy = proxy;
QueueClient client = QueueClient.CreateFromConnectionString(connectionString, queueName);
client.Send(message);
答案 0 :(得分:0)
解决了这个问题,由于某些原因我不得不强制“ServiceBusEnvironment.SystemConnectivity.Mode = ConnectivityMode.Http”因为AutoDetect没有按预期工作。现在工作正常