大家帮忙作一个 程序吧 谢谢了!!(急用)如果能做出来的话,请把代码和程序发到邮箱里面  [email protected]
谢谢各位了
要求是:
a sever is running a sevice called platform,which listens the TCP 5050.after making a socket connection to platform.it has to send a login message first.Platform will reurn a message indicating success or failure.Here are what you need to know .
1. The server's IP address is 192.168.1.1
2. the login message is in XML format for example
<?xml version=1.0?>
<root>
<request>
<action type="login">
<user name="user" password="123456"/>
</action>
</request>
</root>
3. the returned message is in XML format. for example<?xml version=1.0?>
<root>
<response>
<action type="login">
<retcode>0</retcode>   : 0  sucess  -1 failure
</action>
</response>
</root>
4. key technology: socket XML
   Create an application or procedures which connect platform send login message and show if login is successful or not .any developing language is okey.谢谢!!