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.
|
feedback
|
|
There's a few small things wrong in your response to the client. First, you're outputting | |||||||||||
feedback
|
|
The line terminator is technically CRLF ("\r\n"), not LF ("\n"). This may not be your problem, but it is certainly a problem. | |||
|
feedback
|
|
You don't say whether your server is outputting its messages like:
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. | ||||
|
feedback
|