|
Hi Thanks for your reply. I tried to use the Coding4Fun.Kinect.KinectService.Common and the Coding4Fun.Kinect.KinectService.PhoneClient, addint these references to my silverlight applications. No compiler errors were found.
But when I tried to connect the colorClient being already risen the console Host, but I was not able to connect. I do no know why yet, can you guide please?
Should I used something else or different in my silverlight app, should I change something (what something) and recompile the windows phone client?
(this is the code I used)
try
{
if (!_colorClient.IsConnected)
_colorClient.Connect(ServerIp.Text, 4530);
else
_colorClient.Disconnect();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
|