View Single Post
Old 12-04-2006, 12:04 AM   #1
Wira
New Member
 
Join Date: Dec 2006
Model: 7100T
Posts: 1
Default Error in reopening socket connection

Please Login to Remove!

hii guys..

I have a menu which will do this process every time user click it.
- ask user to type text
- open socket connection to server
- send the text to server
- close connection

i'am not using the BES, just connect directly to a web server, so i use deviceside=true parameter.
Code:
iSocket = (StreamConnection)Connector.open("socket://" + iServerName+ ":" + iPort + ";deviceside=true");
at the first user click this menu, the process works fine, but when the user click it again, its not working. The process will halt in the Connector.open statement for about 2 minutes and then throw exception "Unable to open connection".

i have try to debug my code, and i found that if i open connection and just read from socket it works fine on my process above, but if i open connection and try to write data to socket, it only success on the first time, the next will be fail in opening connection statement.

this is the code for read from socket:
Code:
iEngine.iSockOutputStrm.write((new String(iTransferBuffer)).getBytes());
iEngine.iSockOutputStrm.flush();
guys, please help me fix this error... thanks..
FYI, i'am testing it on emulator.
Offline