c#.net framework 4.0 client profile,Windows application.. i am developing a game which needs to send its current movements of the game through internet to remote computer where the same application(game) is installed.In Same way current movements of the game of remote computer should be send back... How this could be possible ?
|
|
|
You should look into some middleware teknologies like WCF, Web service this is object oriented and easy to develop when you first get the hang of it |
|||
|
|
|
To do that you need to implement a client-server behavior through TCP/IP
Hope this Helps. |
||||
|
|
|
All the answers so far are using a TCP based approach. If you need high performance and low latency then you might find it better to use UDP instead. TCP brings a lot of overhead with it to guarantee that packets will be resent if they are lost (and various other bits of functionality). UDP on the other hand leaves it up to you to deal with packets not arriving. If you have a game where losing the odd update isn't important you can achieve far better bandwidth use, latency and scalability by using UDP instead of TCP. UDP still leaves you with all the issues of firewalls, security etc though. If you need to have it work without worrying about firewalls being an issue then you want to choose a solution that uses HTTP over port 80. |
|||
|
|
|
You have a lot to consider for this. You will need to think about If that is all put to one side, then you can set up a tcp socket server / client approach. A quick google will yield plenty of examples. Check out the Microsoft example http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.aspx What have you tried? |
|||
|
|
|
You can use the System.Net and System.Net.Sockets namespaces to send TCP packets. |
|||
|
|