Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using telnet to send a http request , like this:

telnet> open 192.168.4.135 8087
Trying 192.168.4.135...
Connected to 192.168.4.135.
Escape character is '^]'.
POST /rpc/ HTTP/1.1
HOST:192.168.4.135:8087
Content-length:18
Content-type:application/x-http-form-urlencoded

action=loadrsctype
HTTP/1.1 200 OK
Date: Thu, 17 May 2012 03:52:53 GMT
Content-Length: 45
Content-Type: text/html; charset=ISO-8859-1

return=fail&error=Configuration doesn't existHTTP/1.1 400 Bad Request
Content-Type: text/html
Connection: close
Date: Thu, 17 May 2012 03:52:53 GMT
Content-Length: 94

<HTML><HEAD>
<TITLE>400 Bad Request</TITLE>
</HEAD><BODY>
<H1>Bad Request</H1>
</BODY></HTML>
Connection closed by foreign host.

the response code is 200 , but why there is a paragraph like this :

HTTP/1.1 400 Bad Request
Content-Type: text/html
Connection: close
Date: Thu, 17 May 2012 03:52:53 GMT
Content-Length: 94

<HTML><HEAD>
<TITLE>400 Bad Request</TITLE>
</HEAD><BODY>
<H1>Bad Request</H1>
</BODY></HTML>

This is the output of the server or telnet itself ? How to avoid to show this ?

--update-- When i change "HTTP/1.1" to "http/1.1", i get the right response. Now i wonder wheather this is requirement of protocol or related with the implementation of the server?

share|improve this question
It looks like the content of the "200 OK" response is "return=fail&error=Configuration doesn't exist", so it doesn't look like this has worked at all. Are you sure that URL is OK? – Ernest Friedman-Hill May 17 '12 at 4:02
I think the url has no problem. It seems there are TWO responses. The first one (return=fail&error=Configuration doesn't exist) is what i expected, but the second one is not. – ccsnailpp May 17 '12 at 4:10

closed as off topic by Will Feb 16 at 21:18

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

In HTTP 1.1, all connections are considered persistent unless declared otherwise.

Then... I think the server is receiving some spurious newline char and reply with a Bad Request.

If you use http/1.1 instead of HTTP/1.1 could make fallback the version to the version 1.0 that's not persistent by default and after the 200 OK response it drops the connection.

share|improve this answer

The code at the URL you are accessing is printing some text:

return=fail&error=Configuration doesn't exist

But then your code continues on to print a HTTP 400 error. Probably you forgot to abort after printing the response, and so your code goes on to print the HTTP 400 as well.

share|improve this answer
so, I really think that the problem is the server. – ccsnailpp May 17 '12 at 4:24
@ccsnailpp: Yes, the problem is the code on the server has a bug in it. (Sorry, I was assuming it was your code running on the server!) – Malvineous May 17 '12 at 5:22
yes, it should be. the server is neither apache nor nginx. it is a tiny server implemented by our team. – ccsnailpp May 17 '12 at 5:41

try replace & to & amp; (without space)

share|improve this answer

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