I'm trying to send a GET request to a Server with Socket Class.. THIS IS MY TEST CODE:

ConnectInternet();
String responseData = String.Empty;
String buffer = "GET /" + gLoginString + "/" + Command + "?winmob=" +
                ClassGlobalClass.VersioneJack + " HTTP/1.1";

if (SendHeader != null)
{
    buffer = buffer + "\nX: " + SendHeader;
}

buffer = buffer + "\n\n";

try
{

    Byte[] bytesSent = Encoding.ASCII.GetBytes(buffer);
    Byte[] bytesReceived = new Byte[256];
    Socket client = ConnectSocket("217.172.185.199", 5001);

    if (client == null)
        return ("Connection failed");

    // Send request to the server.
    client.Send(bytesSent, bytesSent.Length, SocketFlags.DontRoute);


    bool StopWhile = false;
    while (!StopWhile)
    {
        int bytes = 0;
        bytes = client.Receive(bytesReceived, bytesReceived.Length, 0);
        responseData = Encoding.ASCII.GetString(bytesReceived, 0, bytes);

        if (responseData != null & responseData != string.Empty)
        {
            StopWhile = true;
        }
    }
}

When I write to this sock, the server waits before answering. This causes C# to make another request. How can I avoid this?

ps: I'm on Netcf3.5

EDIT: This is the output of Netcat when sniff received packets

$ nc -l -p 5001
GET /Test/send?winmob=version HTTP/1.1
X: 24   XXXXXXXXXX      123      pass                        test 2

GET /Test/send?winmob=version HTTP/1.1
X: 24   XXXXXXXXXX      123      pass                        test 2

GET /Test/send?winmob=version HTTP/1.1
X: 24   XXXXXXXXXX      123      pass                        test 2

GET /Test/send?winmob=version HTTP/1.1
X: 24   XXXXXXXXXX      123      pass                        test 2

GET /Test/send?winmob=version HTTP/1.1
X: 24   XXXXXXXXXX      123      pass                        test 2
link|improve this question

67% accept rate
Please don't put the tags in the title (C#) – John Saunders Jan 11 '11 at 9:31
1  
Well, you havn't followed the HTTP protocol (e.g. you have to write \r\n\r\n to delimit the headers from the body, but there's much, much more to it to implement an http/1.1 client). There's nothing here that resends the request, so how did you learn that the request is resent ? If it's just TCP retransmissions, that's no problem (other than indicating a flaky/bad network) – nos Jan 11 '11 at 9:35
We see in the server log that in time that it's wait for answer, the client resend the request every 3-4 seconds! I edited first post with the netcat output. – Leen15 Jan 11 '11 at 9:40
I tried same code on Windows .net 3.5 and this not happen. so is a bug of netcf?? – Leen15 Jan 11 '11 at 13:56
Slow down man, don't jump to conclusions. The Socket class does not automatically send messages depending on whether or not you received a response, even on the compact framework. Nos provided some good feedback which I think you should try (the \r\n\r\n thing). – C.Evenhuis Jan 11 '11 at 15:13
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.