Remotely using the Kinect with Windows Phone
We have already learned how to leverage the Kinect sensor using Azure. Now we will take it one step further by integrating it with Windows Phone along with the solution that we have previously built. In this application, we will try to send a command from a Windows Phone that will be passed to a Kinect device through Azure.
The overall solution will look like the following diagram:
Required components
As this is an extension of the previously designed solution, along with the previously used components we will be using the following:
Windows Azure Service Bus
Windows Phone SDK
The Windows Azure Service Bus
Service bus allows us to send or receive messages between two platforms remotely. It also supports different modes of messaging.
Note
For more information about Windows Azure Service Bus refer to http://www.windowsazure.com/en-us/home/features/messaging/.
In our application, we are going to use a WCF service to point to a remote endpoint hosted in Windows...