I currently create a SL/XNA application.How should I do if the user A want to connect to user B through the application?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here are two ways you can do this:
Create web services that both phones connect to and build logic to allow the two to communicate via the services.
Ex: http://msdn.microsoft.com/en-us/gg241261.aspx
Use SignalR to allow both phones to talk to each other in real time. You can open up the SignalR WP7 solution and take a look.
Example: http://www.silverlightshow.net/items/Windows-Phone-SignalR-Awesome-Possibilities.aspx
Github: https://github.com/SignalR/SignalR/
Wiki: https://github.com/SignalR/SignalR/wiki
Hope this helps!