You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@jakarta.apache.org by Daniele Pozzi <da...@uniteam.it> on 2000/02/02 00:37:50 UTC

tomcat problem on lunix

I'm working with Apache 1.3.9 + Tomcat 3.0.
I have some jsp pages working good on Win NT, I test them on Linux
(Mandrake) and I have a big problem:
JSP pages cannot access query string, it's always null.

Tomcat snoop.jsp example page has the same problem:

the request results on NT for this URL
      http://localhost/examples/jsp/snp/snoop.jsp?var=xx 
are the following:

JSP Request Method: GET 
Request URI: /examples/jsp/snp/snoop.jsp?var=xx 
Request Protocol: HTTP/1.0 
Servlet path: /jsp/snp/snoop.jsp 
Path info: null 
Path translated: null 
Query string: var=xx 
Content length: -1 
Content type: null 

and on Linux:

JSP Request Method: GET 
Request URI: /examples/jsp/snp/snoop.jsp?var=xx 
Request Protocol: HTTP/1.0 
Servlet path: /jsp/snp/snoop.jsp 
Path info: null 
Path translated: null 
Query string: null
Content length: -1 
Content type: null

Thanks.

Daniele Pozzi