help needed,
I am trying to connect to the internet using a TCP socket connection.
my code looks something like the following:
isocket.Connect(....)
User::WaitForRequest(....);
iBuffer.Copy(_L("Get /path_N_file.."));
iSocket.Write(iBuffer, requestStatus);
User::WaitForRequest(requestStatus);
iSocket.Read(iBuffer, requestStatus);
User::WaitForRequest(requestStatus);
It seems to be working good till the write function. But at Read it
waits for a few minutes and returns an exception of -25(end of file)
why is it giving me this error. I am not using any files.
Gaurav Jain