View Single Post
  #2 (permalink)  
Old 01-15-2008, 09:55 PM
undertow's Avatar
undertow undertow is offline
Member
 
Join Date: Jan 2008
Location: Colorado USA
Posts: 12
undertow is on a distinguished road
Send a message via AIM to undertow Send a message via Skype™ to undertow
looks to me that you are not sending the 2 CRLF characters. in the last add of your data arraylist i would suggest using "\r\n" and transmit with 'println' or, if you really want to be sure use "\r\n\r\n" and transmit that string with 'print' rather than 'println'. I hope that helps.

and dont forget to call flush() on the out object when you are done transmitting just to be sure the entire buffer is sent out.

Last edited by undertow : 01-15-2008 at 09:57 PM.
Reply With Quote