Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

firefox does not work with my simple http server

  • 1 답장
  • 1 이 문제를 만남
  • 4 보기
  • 최종 답변자: cor-el

more options

I'm developing a simple http server. I can generate simple HTTP responses. IE displays the response properly; FF does not.

Here is the response:

       "HTTP/1.1 200 OK\r\n" \

"Host: 127.0.0.1:80\r\n" \ "Date: %s\r\n" \ "Server: SimpleHTTPtutorial v0 %d\r\n" \ "Content-Type: text/html\r\n" \ "Content-Length: 44; charset=ISO-8859-1\r\n" \ "\r\n" \ "blahblah from %d

Does FF require something extra in order to interpret a page? FF responds with a blank page or says the connection was reset.

I'm developing a simple http server. I can generate simple HTTP responses. IE displays the response properly; FF does not. Here is the response: "HTTP/1.1 200 OK\r\n" \ "Host: 127.0.0.1:80\r\n" \ "Date: %s\r\n" \ "Server: SimpleHTTPtutorial v0 %d\r\n" \ "Content-Type: text/html\r\n" \ "Content-Length: 44; charset=ISO-8859-1\r\n" \ "\r\n" \ "<html><body>blahblah from %d</body></html> Does FF require something extra in order to interpret a page? FF responds with a blank page or says the connection was reset.

모든 댓글 (1)

more options

Looks that the content didn't get processed before it got send, i.e. convert "\r" to CR and "\n" to LF and substituting the %s and %d.


A good place to ask advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the mozillaZine forum site in order to post at that forum.

See http://forums.mozillazine.org/viewforum.php?f=25