我正嘗試在java中訂閱Azure服務總線主題。爲此,我需要創建一個ServiceBusContract實例。在每個例子中,我發現,他們這樣做是這樣的:在java中使用Azure服務總線
String issuer = "<obtained from portal>";
String key = "<obtained from portal>";
Configuration config =
ServiceBusConfiguration.configureWithWrapAuthentication(
「HowToSample」,
issuer,
key);
ServiceBusContract service = ServiceBusService.create(config);
來自:link
但是,如果你在javadoc看看,有沒有configureWithWrapAuthentication方法有3字符串參數!
我正在使用0.3.1版本的azure api jar。
如何使用這些新的(?)configureWithWrapAuthentication方法創建ServiceBusContract?還是有我忽略的東西?
我只是在瀏覽[link](https://github.com/WindowsAzure/azure-sdk-for-java/pull/151/files)的時候偶然發現了這個,但我仍然接受了你的回答。你們應該真的把關於serviceBusRootUri和wrapRootUri的信息包含在javadoc中,因爲它沒有。無論如何,謝謝你的回答! – rataticsd