How is brokered messaging via Azure Service Bus done from a Xamarin Forms PCL...is there an SDK, library or plugin? If there is a way to hand roll a brokered message, I suppose it could be accomplished with an HttpClient & the REST API ...
相关问题
- How to implement only emoji keyboard for Entry?
- Error:Xamarin.Forms targets have been imported mul
- Connecting to Windows Server Service Bus on AWS
- HttpClient not accepting Authorization headers (40
- Xamarin Custom View Button Binding
相关文章
- Xamarin form MessagingCenter Unsubscribe is not wo
- How to change the Back Button Text on Xamarin.Form
- Worker - having trouble to choose the best technol
- Get control's dimensions in CustomRenderer (Xa
- How load binary images in Xamarin
- How to get DPI device to PCL in Xamarin. Forms?
- Xamrin.Forms Entry Cell How to change font size fo
- Xamarin Form Tabbed Page with Mvvmcross
I finally have a working method for posting a message to an Azure Service Bus Queue from a Xamarin PCL! The way to do this is via an HttpClient.
Gotchas that made the solution elusive:
The nuget package for Microsoft.ServiceBus.Messaging will happily install, but has no exposure to the portable class.
WebClient examples abound, but there is no webclient available in the PCL!
The path to post to is: BaseServiceBusAddress + queue + "/messages"
}