2
我正在使用Window Server Service Bus 1.1。我能夠使用下面的基地址無法爲Windows Server 1.1(OnPremises)的Service Bus使用REST API
string baseAddressHttp = "https://" + ServerName + ":9355/" + Namespace + "/$STS/OAuth/";
對於窗口天青服務總線用於發送消息到隊列我可以張貼在以下隊列地址的請求,以生成從窗口服務器服務總線OAuth令牌
string serviceNamespace = "ServiceBusDefaultNamespace";
string queueName = "SampleQueuName";
string message ="This is my first message";
string queueAddress = "https://" + serviceNamespace + ".servicebus.windows.net/"+ queueName + "/messages";
WebClient webClient = new WebClient();
webClient.Headers[HttpRequestHeader.Authorization] = token;
webClient.UploadData(baseAddress, "POST", Encoding.UTF8.GetBytes(message));
但對於窗口服務器服務總線什麼樣的技術不起作用。
Window Server Service Bus 1.1是否支持REST API? 任何幫助將非常感激。
在此先感謝!
在那裏我的回答有問題? – jonho
它的工作!非常感謝Jonho! –