The main issue I am having doesn't seem to be in the code itself, however, I posted the code just in case. First, when I run the server and use "telnet localhost 46745" in a separate terminal I get a successful connection to localhost. Then I type "GET /hello.html HTTP/1.1". The hello.html file is located in the directory where the server is being ran from. Anyway, the GET method returns both lines of code in the hello.html file. Okay, that seems to work. The issue lies when I go to firefox, and in the browser type "http://localhost:46745/hello.html", and I don't get any error messages, but the browser just spins and says "Waiting for localhost...". What are some possible issues (code or in browser) that could be causing this issue. I have googled for hours to no avail and, yes, this is a homework assignment. Thanks.

link|improve this question
feedback

3 Answers

There's a few small things wrong in your response to the client. First, you're outputting \n\n before the HTTP/1.1 XXX Some Status line. HTTP/1.1 should be first. There is no \n\n before it. Secondly, you're outputting \ns after it. The HTTP specification specifies that you should use \r\n, not \n (although Firefox should be able to handle this). Finally, for your 400 and 404 status codes, you're not returning any content. You probably should, even if it's empty.

link|improve this answer
I made those changes (reflected above), recompiled and still firefox just spins and says "Waiting for localhost..." – legends May 29 '11 at 5:22
@legends: The responses still have no headers. While that's okay, you need one more \r\n than you already have to indicate that there's no headers. – icktoofay May 29 '11 at 5:27
@legends: send can fail. Try checking to see if it's sending all of the data or if it's failing (possibly part-way through). – icktoofay May 29 '11 at 5:47
since send sends back the number of bytes it sent I set a variable to retrieve the returned value. Turns out it is 0...how should I go about fixing that? – legends May 29 '11 at 6:06
@legends: I'm not sure, sorry. Try another perror, but it may not help you. You may be able to ask another question specifically about why it's returning zero. – icktoofay May 29 '11 at 6:16
feedback

The line terminator is technically CRLF ("\r\n"), not LF ("\n").

This may not be your problem, but it is certainly a problem.

link|improve this answer
feedback

You don't say whether your server is outputting its messages like:

Connect from host ...

so that's one thing to look for. It's possible the messages are never reaching your server.

But, regardless of that, you should get yourself a copy of WireShark (free) or another network sniffer program so you can see exactly what's going on under the covers.

This will greatly assist in debugging these types of issues.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.