使用AZURE ServiceBus 中继时超时,怎么也连不上呀,不知哪里不对了,

使用AZURE ServiceBus 中继时超时,怎么也连不上呀,不知哪里不对了,
The timeout elapsed upon attempting to obtain a token while accessing

您好,
关于这个错误您能提供些与该错误有关的代码片段吗?
在获取token的过程中超时,有可能是您选择的创建的验证的token和service bus 提供的不一致。 service bus以前所用的验证是有ACS提供的,而现在所提供的验证方式为SAS,因此创建验证的方法名需要修改:

 var tp = TokenProvider.CreateSharedAccessSignatureTokenProvider("RootManageSharedAccessKey", "**=");

希望您能提供更多的关于错误信息的详情,方便进一步帮您解决问题。
如果您想进一步了解Windows Azure, Windows Azure 官网欢迎您的访问

Regards,
Will