Re: problem the communication to cross-platform(flash)..

2007-09-28 Thread Trustin Lee
Please take a look at this thread: http://www.nabble.com/sending-null-terminated-strings-tf4410525s16868.html Trustin On 8/14/07, leecholho <[EMAIL PROTECTED]> wrote: > > thanks your replay.. > i checked a messages with Ethereal.. > and cheked that flash sent "0d 0a 00" > > i'm testing a several

Re: problem the communication to cross-platform(flash)..

2007-08-14 Thread leecholho
thanks your replay.. i checked a messages with Ethereal.. and cheked that flash sent "0d 0a 00" i'm testing a several methods.. 1) session.write("LOGINS"); last message is "0a" , flash is not checked get message.. 2) session.write("LOGINS\r"); last message is "0d0a" , flash is not

Re: problem the communication to cross-platform(flash)..

2007-08-13 Thread Trustin Lee
On 8/14/07, leecholho <[EMAIL PROTECTED]> wrote: > > hi.. > i'm testing a modified source of sample chat server source.. client program > is flash, > > flash transmitted message that added "\r\n" to the message. > and java server(multi-thread base) is return message that added "\0" to the > return

problem the communication to cross-platform(flash)..

2007-08-13 Thread leecholho
hi.. i'm testing a modified source of sample chat server source.. client program is flash, flash transmitted message that added "\r\n" to the message. and java server(multi-thread base) is return message that added "\0" to the return message. i used same source the recevie and send part. first