What kind of transfer methods are msn like messengers uses.

  • Thread starter Thread starter Yasin cepeci
  • Start date Start date
Y

Yasin cepeci

I wantto develope a simple chat programme. I used Sql Server but I have to
use timeshift buffer to improve my server performance how can I send
messages to receivers simple and rapid like messengers.
 
I wantto develope a simple chat programme. I used Sql Server but I have to
use timeshift buffer to improve my server performance how can I send
messages to receivers simple and rapid like messengers.

I would suggest "soap:tcp" protocol fro the client and server
communication purposes of the web services enhancements (WSE).
http://msdn2.microsoft.com/en-us/webservices/aa740663.aspx

After achieving server and client communication basics, all you need
to do is decide for application protocol.

Hope this helps.
Moty
 
It work thanks. But I couldn't understand how can I use it to chatting or
data transfering or what kind of benefits I ll get to use it. I couldnt
Understand its logic I think :S
 
It work thanks. But I couldn't understand how can I use it to chatting or
data transfering or what kind of benefits I ll get to use it. I couldnt
Understand its logic I think :S

Hi,

WSE can help you pass serialized data over tcp, sort of messaging
mechanism over the network.
You can serialize a Message class and pass it to the server. When the
server gets the message it parses it and sends it to the recipient (Of
course you can do much more complex stuff and use patterns for
subscribing clients etc.)

But thats the main idea.

Feel free to ask anymore questions regarding the subject (or any other
=))
Moty
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top