Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

I have a SERVER / CLIENT based chat interface (lobby) - the communication is done via TCP using TcpClients and TcpListeners - currently I have a working model using TcpClient and TcpListeners with NetworkStreams, StreamReaders, StreamWriters, etc....

 

At one point the CLIENT will ask the SERVER for the PLAYER LIST so it can be displayed to the users - in code the PlayerList is actually on the server as a DataSet (dsPlayerList.Tables["PlayerList"]) so when I send this to the Client I need to convert the results into a string and send it (using my StreamWriter.WriteLine and StreamWrite.Flush).

It would be so much better if I could just send the DataSet [dsPlayerList] directly AS a DataSet and have it recovered at the other end AS a dataset and not need to perform any of these string conversions...

 

Is such a thing possible?

Any ideas, hints, and help would be greatly appreciated, thanks

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...