ezzat wrote:
dear HTH
/Niklas
I have tried all this solutions before,
the first request and response is fine. but when I tried to get the second
response, I faced with the Exception "socket write error"
I do looping like this
a=0;
while( a <10)
{
send request
reseive response
a++;
}
this exception exst only in the second request-response
plz help
The write error probably means that the server has closes down the
connection after sending the response. If that's the case you will have
to reconnect and log in again before sending the second request.
HTH
/Niklas