Hello Is there any testing tool for checking the compliance of a HTTP server ? Any htlp is appreciated thanks -aniruddha...
Aniruddha Shevade
ashevade@...
Nov 5, 2001 12:10 am
65
The following paragraph in the HTTP 1.1 spec, the last paragraph in section 4.2, "Message Headers", talks about the possibility of having multiple headers with...
Karr, David
david.karr@...
Nov 20, 2001 6:03 pm
66
... It means that if a header (denoted by its filed-name) is defined to have a comma-separated list field-value, then that header may be repeated. For example,...
Alex Rousskov
rousskov@...
Nov 20, 2001 6:12 pm
67
Thanks. That helps. ... http://docs.yahoo.com/info/terms/...
Karr, David
david.karr@...
Nov 20, 2001 6:20 pm
68
Hello All, I m writing an application over http protocol. I have written client and server application but having one problem in two way communication. When...
Hi, I'm writing an HTTP 1.0 proxy (for fun). Things are going well except that when I refresh a page, IE 5 SP2 performs a GET with a If- None-Match header...
Hi, I'm writing an HTTP proxy (for fun) and was wondering about a response I got from an Apache web server ver 1.3.12. I presented a GET with HTTP/1.0 as the...
Only Proxy and Cache downgrade the HTTP version in the req. As long as the response has the same major version as that of the request, the response is RFC...
Sukanya S
ssukanya@...
Nov 28, 2001 10:27 am
72
It is allowed to write a 1.1 response as long as it doesn't use any features that cause interoperability with your 1.0 client - for instance Transfer-Encoding:...
Patrick McManus
mcmanus@...
Nov 28, 2001 2:08 pm
73
[John Rodgers: Wed, Nov 28, 2001 at 10:00:18AM -0000] ... The null is not allowed under the normal qdtext definition, because TEXT prohibits octects 0-31 and...
Patrick McManus
mcmanus@...
Nov 28, 2001 2:27 pm
74
This might be helpful: http://www1.ics.uci.edu/pub/ietf/http/rfc2145.txt ... -- Mark Nottingham http://www.mnot.net/...
Hello I have written a HTTP server which allows a user to Upload a File. The File is Sent as MIME attachment. The probelm I have is if there is any problem in...
Aniruddha Shevade
ashevade@...
Dec 20, 2001 2:23 am
76
... I assume you are talking about support for PUT request method. HTTP does not use 'upload', 'file' or 'MIME attachment' terms. ... HTTP is relatively clear...
Alex Rousskov
rousskov@...
Dec 20, 2001 2:52 am
77
Hello All, I want to use authorization at HTTP interface. How can HTTP client authenticate to itself and to the HTTP server? I have seen in the toolkit that...
... There are several authentication schemes. See, for example, RFC 2617: HTTP Authentication: Basic and Digest Access Authentication ... I do not know which...
Alex Rousskov
rousskov@...
Dec 28, 2001 2:51 pm
79
Hi Alex, Thanx for ur prompt response, I m using SyncML toolkit, this is standard toolkit known as rtk (Reference tookit) released by SyncML.org. It has...
hello all, Anybody from this group has gone for Conformacne on HTTP, pls reply back to me, so that i can clear my doubts. Looking forward for ur help. Jacky ...
Hello I have written a HTTP sever in C++/ According to the RFC 2616 Section 4.2 it seems that the HTTP headers can span over multiple lines if the line is...
Aniruddha Shevade
ashevade@...
Jan 24, 2002 11:45 pm
82
... Yes, working with human-oriented formats like HTTP using machine-oriented languages like C/C++ is difficult. ... Section 4.2 does not contain explicit...
Alex Rousskov
rousskov@...
Jan 25, 2002 12:33 am
83
... Is that like the Death Star being fully operational? Sorry... lost it there for a minute. While we're all here, have a look at [1]; if you're aware of any ...
... I think you are missing Proxy-Authentication-Info from RFC 2617. Alex,...
Alex Rousskov
rousskov@...
Jan 25, 2002 4:05 pm
86
hello all, Any body having the Test suite for HTTP Server .. if so plse post it here bcoz i want to test my http server performance Thanks in Advance Kamaraj...
I've been looking for a place to find a credit card. Here it is. My credit was really bad but, they where able to appove me! Check it out! Click on link Below!...
Can someone remind me what the state of the art is re: chunked POST? From what I can see, it's allowed, but there's not a good interoperability story with 1.0,...
Mark- I can't speak for the official position. The primary interoperability problem is due to CGI 1.1 (and earlier). CGI REQUIRES a CONTENT-LENGTH. Some...
Mark, FYI: Since supporting chunked encoded _messages_ is a MUST, our HTTP compliance test suite has test cases that use chunked _requests_. So far, none of...
Alex Rousskov
rousskov@...
Jun 11, 2002 4:17 pm
92
Thanks. So, from a client perspective, they might expect any of the following behaviours when sending a chunked POST; a) success b) 411 Length Required c) 5xx...
... e) a malformed/invalid message reaches the server (proxy corrupts message body and/or headers because it does not understand what is going on); the server...
Alex Rousskov
rousskov@...
Jun 11, 2002 5:07 pm
94
[Alex Rousskov: Tue, Jun 11, 2002 at 11:07:10AM -0600] ... f) 100 continue -Patrick...
Patrick McManus
mcmanus@...
Jun 11, 2002 5:14 pm
95
... g) nothing (i.e., the recipient [erroneously] waits for more data, without sending 100 continue) Alex....