How do I access the Windows Azure ServiceBus queue from a Windows Phone 8 app?

The documentation for WindowsAzure.Messaging.Managed states the package destination as:

Use this for Windows Azure Technical Support customer registration and notifications (for Windows Store apps and Windows Phone 8). It adds the file Microsoft.WindowsAzure.Messaging.Managed.dll to your project.

Unfortunately, nowhere is there a clear description of how to access the Windows Azure ServiceBus queue engine from a Windows Phone 8 app.

Is it generally possible to access ServiceBus queues from a Windows Phone 8 app? And if so, which package should allow it?

+3


source to share


2 answers


Azure Notification Hubs provide all SDK capabilities for .Net (desktop) and device (enrollment only) network management SDKs for WP, WinRT, Android and iOS.



All features of the Azure Service Bus SDK are for .Net (desktop) only. But you can use the REST API to access the core functionality of the queue / topic from any platform that supports HTTP, including Widows Phone.

+1


source


There is a new library that works with Windows 10, Windows 8 and many more.



http://www.nuget.org/packages/AzureSBLite/ I have tested on Windows 10 and it works like. Apart from a few examples: https://github.com/ppatierno/azuresblite-examples

0


source







All Articles