Re: Tomcat returns Jsp source code as text/plain to the browser

2014-10-01 Thread Gadi Sastiel
Hi, the request is seen on the tomcat access log ( i've changed the
path deliberately)

[01/Oct/2014:10:01:27 +0300] GET /x/yy/z/Page.jsp%22
HTTP/1.1 200 30223

Thanks
Gadi

On Tue, Sep 30, 2014 at 10:06 PM, André Warnier a...@ice-sa.com wrote:

 Gadi Sastiel wrote:

 I have in httpd.conf:

 LoadModule proxy_module modules/mod_proxy.so
 LoadModule proxy_http_module modules/mod_proxy_http.so

 # Configure mod_proxy_html to understand HTML4/XHTML1
 IfModule proxy_html_module
 Include conf/extra/proxy-html.conf
 /IfModule

 LoadModule jk_module modules/mod_jk.so

 Gadi


 Maybe to gain some time, let me point you to the explanation of what both
 Konstantin and Daniel are looking for :
 https://tomcat.apache.org/connectors-doc/reference/apache.html
 See the text in red ?

 In more words : a frequent configuration error in such cases (where Apache
 httpd in a front-end for Tomcat, and both are on the same machine), is to
 allow Apache httpd to see the contents of the Tomcat application
 directories (/webapps/*).
 Tomcat knows that a JSP page is something which has to be processed, and
 that it is the result that should be returned to the client, not the source.
 But httpd doesn't know that, and for him a JSP page is just text, and it
 returns it as is.

 So if the URL of the request is such, that Apache does not think that this
 request has to be forwarded to Tomcat, it will try to process this request
 itself.  And if it can do that (aka it sees the directory where this file
 is located, and the file in it), then it will return that page itself to
 the client, as text.

 And that seems to be what you are seeing.  From there comes the suspicion
 of Konstantin and Daniel, because Tomcat, correctly configured, wouldn't do
 that.

 Except that you mention somwhere else that the request is visible in the
 Tomcat access log.  That would normally mean that httpd /is/ forwarding
 this request to Tomcat, and that the error is on the Tomcat side.  So
 before going any further, make absolutely sure that that is the case, and
 that it is really /this/ request that you are seeing in the tomcat logs.
 Otherwise everyone is going to lose a lot of time searching in the wrong
 places.



 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org




Re: Tomcat returns Jsp source code as text/plain to the browser

2014-10-01 Thread Mark Thomas
On 01/10/2014 08:14, Gadi Sastiel wrote:
 Hi, the request is seen on the tomcat access log ( i've changed the
 path deliberately)
 
 [01/Oct/2014:10:01:27 +0300] GET /x/yy/z/Page.jsp%22
 HTTP/1.1 200 30223

OK.

Given that this doesn't happen on a clean Tomcat install it is likely
that a servlet or filter in the web application is incorrectly
responding to this request.

What servlets and/or filters do you have mapped to / or /* ?

Mark


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Tomcat returns Jsp source code as text/plain to the browser

2014-10-01 Thread Gadi Sastiel
In the web.xml under /tomcat/conf/

!-- ==
Default Servlet
=== --
 servlet
servlet-namedefault/servlet-name

servlet-classorg.apache.catalina.servlets.DefaultServlet/servlet-class
init-param
param-namedebug/param-name
param-value0/param-value
/init-param
init-param
param-namelistings/param-name
param-valuefalse/param-value
/init-param
load-on-startup1/load-on-startup
/servlet

servlet-mapping
servlet-namedefault/servlet-name
url-pattern//url-pattern
/servlet-mapping

-
servlet
servlet-namejsp/servlet-name
servlet-classorg.apache.jasper.servlet.JspServlet/servlet-class
init-param
param-namefork/param-name
param-valuefalse/param-value
/init-param
init-param
param-namexpoweredBy/param-name
param-valuefalse/param-value
/init-param
load-on-startup3/load-on-startup
/servlet

   !-- The mappings for the JSP servlet --
servlet-mapping
servlet-namejsp/servlet-name
url-pattern*.jsp/url-pattern
url-pattern*.jspx/url-pattern
/servlet-mapping



in the web.xml under the webapp:


!-- ==
Request Charset Encoding
=== --
filter
 filter-namerequestCharsetEncoding/filter-name

filter-class.filters.SetRequestCharsetEncodingFilter/filter-class
 init-param
 param-nameencoding/param-name
 param-valueutf-8/param-value
 /init-param
/filter

filter-mapping
filter-namerequestCharsetEncoding/filter-name
url-pattern*.jsf/url-pattern
dispatcherREQUEST/dispatcher
/filter-mapping

filter
 filter-nameVerifyUserExistsFilter/filter-name

filter-class.filters.login.VerifyUserExistsFilter/filter-class
/filter

filter-mapping
filter-nameVerifyUserExistsFilter/filter-name
url-pattern/*/url-pattern
/filter-mapping

!-- ==
The JSF Core Servlet
=== --
servlet
servlet-nameFaces Servlet/servlet-name
servlet-classjavax.faces.webapp.FacesServlet/servlet-class
load-on-startup1/load-on-startup
/servlet

servlet-mapping
servlet-nameFaces Servlet/servlet-name
url-pattern*.jsf/url-pattern
/servlet-mapping

!-- ==
Default Servlet
=== --
servlet
servlet-namedefault-local/servlet-name
servlet-class
org.apache.catalina.servlets.DefaultServlet
/servlet-class
init-param
param-namedebug/param-name
param-value0/param-value
/init-param
init-param
param-namelistings/param-name
param-valuefalse/param-value
/init-param
load-on-startup1/load-on-startup
/servlet

servlet-mapping
servlet-namedefault-local/servlet-name
url-pattern//url-pattern
/servlet-mapping



Thanks

On Wed, Oct 1, 2014 at 11:06 AM, Mark Thomas ma...@apache.org wrote:

 On 01/10/2014 08:14, Gadi Sastiel wrote:
  Hi, the request is seen on the tomcat access log ( i've changed the
  path deliberately)
 
  [01/Oct/2014:10:01:27 +0300] GET /x/yy/z/Page.jsp%22
  HTTP/1.1 200 30223

 OK.

 Given that this doesn't happen on a clean Tomcat install it is likely
 that a servlet or filter in the web application is incorrectly
 responding to this request.

 What servlets and/or filters do you have mapped to / or /* ?

 Mark


 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org




Re: Tomcat returns Jsp source code as text/plain to the browser

2014-10-01 Thread Gadi Sastiel
Probably it happens since our JSP's are not under the WEB-INF folder.
Should be moved there.

Problem solved temporary by adding rewrite rule to the apache
httpd-ssl.conf:

RewriteRule ^.*\.jsp/*.*$ - [F]

Thanks for everyone who tried to help.

On Wed, Oct 1, 2014 at 12:10 PM, Gadi Sastiel gadi.sast...@gmail.com
wrote:

 In the web.xml under /tomcat/conf/

 !-- ==
 Default Servlet
 === --
  servlet
 servlet-namedefault/servlet-name

 servlet-classorg.apache.catalina.servlets.DefaultServlet/servlet-class
 init-param
 param-namedebug/param-name
 param-value0/param-value
 /init-param
 init-param
 param-namelistings/param-name
 param-valuefalse/param-value
 /init-param
 load-on-startup1/load-on-startup
 /servlet

 servlet-mapping
 servlet-namedefault/servlet-name
 url-pattern//url-pattern
 /servlet-mapping

 -
 servlet
 servlet-namejsp/servlet-name
 servlet-classorg.apache.jasper.servlet.JspServlet/servlet-class
 init-param
 param-namefork/param-name
 param-valuefalse/param-value
 /init-param
 init-param
 param-namexpoweredBy/param-name
 param-valuefalse/param-value
 /init-param
 load-on-startup3/load-on-startup
 /servlet

!-- The mappings for the JSP servlet --
 servlet-mapping
 servlet-namejsp/servlet-name
 url-pattern*.jsp/url-pattern
 url-pattern*.jspx/url-pattern
 /servlet-mapping



 in the web.xml under the webapp:


 !-- ==
 Request Charset Encoding
 === --
 filter
  filter-namerequestCharsetEncoding/filter-name

 filter-class.filters.SetRequestCharsetEncodingFilter/filter-class
  init-param
  param-nameencoding/param-name
  param-valueutf-8/param-value
  /init-param
 /filter

 filter-mapping
 filter-namerequestCharsetEncoding/filter-name
 url-pattern*.jsf/url-pattern
 dispatcherREQUEST/dispatcher
 /filter-mapping

 filter
  filter-nameVerifyUserExistsFilter/filter-name

 filter-class.filters.login.VerifyUserExistsFilter/filter-class
 /filter

 filter-mapping
 filter-nameVerifyUserExistsFilter/filter-name
 url-pattern/*/url-pattern
 /filter-mapping

 !-- ==
 The JSF Core Servlet
 === --
 servlet
 servlet-nameFaces Servlet/servlet-name
 servlet-classjavax.faces.webapp.FacesServlet/servlet-class
 load-on-startup1/load-on-startup
 /servlet

 servlet-mapping
 servlet-nameFaces Servlet/servlet-name
 url-pattern*.jsf/url-pattern
 /servlet-mapping

 !-- ==
 Default Servlet
 === --
 servlet
 servlet-namedefault-local/servlet-name
 servlet-class
 org.apache.catalina.servlets.DefaultServlet
 /servlet-class
 init-param
 param-namedebug/param-name
 param-value0/param-value
 /init-param
 init-param
 param-namelistings/param-name
 param-valuefalse/param-value
 /init-param
 load-on-startup1/load-on-startup
 /servlet

 servlet-mapping
 servlet-namedefault-local/servlet-name
 url-pattern//url-pattern
 /servlet-mapping



 Thanks

 On Wed, Oct 1, 2014 at 11:06 AM, Mark Thomas ma...@apache.org wrote:

 On 01/10/2014 08:14, Gadi Sastiel wrote:
  Hi, the request is seen on the tomcat access log ( i've changed the
  path deliberately)
 
  [01/Oct/2014:10:01:27 +0300] GET /x/yy/z/Page.jsp%22
  HTTP/1.1 200 30223

 OK.

 Given that this doesn't happen on a clean Tomcat install it is likely
 that a servlet or filter in the web application is incorrectly
 responding to this request.

 What servlets and/or filters do you have mapped to / or /* ?

 Mark


 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org





Re: Tomcat returns Jsp source code as text/plain to the browser

2014-10-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Gadi,

On 10/1/14 9:32 AM, Gadi Sastiel wrote:
 Probably it happens since our JSP's are not under the WEB-INF
 folder. Should be moved there.

That's unlikely to be the problem.

 Problem solved temporary by adding rewrite rule to the apache 
 httpd-ssl.conf:
 
 RewriteRule ^.*\.jsp/*.*$ - [F]

If the above helped, I think you are badly misconfigured somewhere.
You probably have something to the effect of:

  Alias /context /path/to/tomcat/webapps/context

This will allow httpd to serve your static content out of Tomcat's
deployment directory.

Try making a request to:

http://host/context/WEB-INF/web.xml and see if you get the deployment
descriptor. If you do, then your httpd is badly misconfigured.

 Thanks for everyone who tried to help.

Since you don't know why the JSP source was being displayed, I think
you've just put a band-aid on the problem. You aren't done, yet...

- -chris
-BEGIN PGP SIGNATURE-
Version: GnuPG v1
Comment: GPGTools - http://gpgtools.org

iQIcBAEBCAAGBQJULBXyAAoJEBzwKT+lPKRYUWoQAL2hPqNlGOcTKf5yqZTqkZqO
nxxlU3G5EzQ7rbhsuEuaqLopIN5G3OcSHufmOWaJVjAfhkkEtiqupvmhhMjX/cSm
wys8Mgp71eSVTJ/LwjnHTztFI2XqeBvgD93SQFac1EZ76+A6mSffgFN6p0hriw7J
ZUTEKhYeSHWtSOLqfyeFHtoTjy0XERKQpt6/HlW/X8k/5Cw6HdXyPa7RaRwhoav+
VEA4lxY+bGZxrA97dkIAgKvMTtPq/OEC+G+YZK0sR6Fo5Ot7aEIQN/91UHnaChnV
3+clc/WzDbT2J+aaZ8aX5DYkwujssTr4fF7YGzpQv8rYJxDJlE9oFSQqhRkAvfMb
ukw2IkmdPG6UKXWwi/EXGmT6r7uJhoQyzTKs/VFXQ0ChE6/HPYMbVn9uK21+s+md
FjnWzR0k3WVyc6/HYtBhzob/7/s/l2bY2x/k7UL/dS9pmCQNPfva2j602+BtXI08
pzTwU51UySLsST7SOQdipVrXjEDYrnd03k/vQm9/KSJ9de9AlxKKAAQ3eplEjuwP
CBhH1ZMUgswi5f/jdwC/iMun1YnnXMkJzZfQdPIfhe+S3HgRfJRvkVJDC4rp398T
AXv6LvrD/52lOp+1tLHOEx/QymPNO9JJK7o3UpvxyIFiMm7LFlURQR3D/VJVKR3X
8bGA/eiofWv0qlQAwe7n
=A0Ay
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Tomcat returns Jsp source code as text/plain to the browser

2014-09-30 Thread Gadi Sastiel
Hi all,



Tomcat version 7.0.30

Operating System – Windows server 2008 and above.



When I concatenate “ ( quotes)  to the end of the url when accessing a jsp

for example:  /pages/somePage.jsp”

The browser returns the source code of the JSP.



Does anyone see such a behavior before ?

How can I filter it out ?



Thanks


Re: Tomcat returns Jsp source code as text/plain to the browser

2014-09-30 Thread Konstantin Kolinko
2014-09-30 15:30 GMT+04:00 Gadi Sastiel gadi.sast...@gmail.com:
 Hi all,



 Tomcat version 7.0.30

 Operating System – Windows server 2008 and above.



 When I concatenate “ ( quotes)  to the end of the url when accessing a jsp

 for example:  /pages/somePage.jsp”

 The browser returns the source code of the JSP.



 Does anyone see such a behavior before ?


I cannot reproduce this with the currently being tested 7.0.56
(release candidate), nor with the current Tomcat 6 and Tomcat 8.

Is your Tomcat directly accessible via HTTP port, or it is behind
another HTTP server (IIS, Apache HTTPD)?  What Connector is used to
access it (Bio/Nio/Apr,  HTTP or AJP protocol)?

What web browser are you using? What version of Java is used to run it?


 How can I filter it out ?

That depends on the root cause.

Is the source code displayed by Tomcat or by other web server? Is this
request mentioned in Tomcat access log file?


Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Tomcat returns Jsp source code as text/plain to the browser

2014-09-30 Thread Gadi Sastiel
Hi , we are behind Apache. , we have HTTP and AJP connectors.
Java 1.7.17 it was reproduced on Latest chrome and firefox

I can see the request on the tomcat access log.

Thanks
Gadi

On Tue, Sep 30, 2014 at 2:59 PM, Konstantin Kolinko knst.koli...@gmail.com
wrote:

 2014-09-30 15:30 GMT+04:00 Gadi Sastiel gadi.sast...@gmail.com:
  Hi all,
 
 
 
  Tomcat version 7.0.30
 
  Operating System – Windows server 2008 and above.
 
 
 
  When I concatenate “ ( quotes)  to the end of the url when accessing a
 jsp
 
  for example:  /pages/somePage.jsp”
 
  The browser returns the source code of the JSP.
 
 
 
  Does anyone see such a behavior before ?
 

 I cannot reproduce this with the currently being tested 7.0.56
 (release candidate), nor with the current Tomcat 6 and Tomcat 8.

 Is your Tomcat directly accessible via HTTP port, or it is behind
 another HTTP server (IIS, Apache HTTPD)?  What Connector is used to
 access it (Bio/Nio/Apr,  HTTP or AJP protocol)?

 What web browser are you using? What version of Java is used to run it?


  How can I filter it out ?

 That depends on the root cause.

 Is the source code displayed by Tomcat or by other web server? Is this
 request mentioned in Tomcat access log file?


 Best regards,
 Konstantin Kolinko

 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org




Re: Tomcat returns Jsp source code as text/plain to the browser

2014-09-30 Thread Daniel Mikusa
On Tue, Sep 30, 2014 at 9:04 AM, Gadi Sastiel gadi.sast...@gmail.com
wrote:

 Hi , we are behind Apache. , we have HTTP and AJP connectors.
 Java 1.7.17 it was reproduced on Latest chrome and firefox


I've seen similar issues when Apache HTTPD is not configured correctly.
How are you proxying requests to your Tomcat server? mod_proxy? mod_jk?
Can you include relevant configuration?


 I can see the request on the tomcat access log.


Can you include the log entries from both HTTPD  Tomcat?

Dan


On Tue, Sep 30, 2014 at 2:59 PM, Konstantin Kolinko knst.koli...@gmail.com
 wrote:

  2014-09-30 15:30 GMT+04:00 Gadi Sastiel gadi.sast...@gmail.com:
   Hi all,
  
  
  
   Tomcat version 7.0.30
  
   Operating System – Windows server 2008 and above.
  
  
  
   When I concatenate “ ( quotes)  to the end of the url when accessing a
  jsp
  
   for example:  /pages/somePage.jsp”
  
   The browser returns the source code of the JSP.
  
  
  
   Does anyone see such a behavior before ?
  
 
  I cannot reproduce this with the currently being tested 7.0.56
  (release candidate), nor with the current Tomcat 6 and Tomcat 8.
 
  Is your Tomcat directly accessible via HTTP port, or it is behind
  another HTTP server (IIS, Apache HTTPD)?  What Connector is used to
  access it (Bio/Nio/Apr,  HTTP or AJP protocol)?
 
  What web browser are you using? What version of Java is used to run it?
 
 
   How can I filter it out ?
 
  That depends on the root cause.
 
  Is the source code displayed by Tomcat or by other web server? Is this
  request mentioned in Tomcat access log file?
 
 
  Best regards,
  Konstantin Kolinko
 
  -
  To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
  For additional commands, e-mail: users-h...@tomcat.apache.org
 
 



Re: Tomcat returns Jsp source code as text/plain to the browser

2014-09-30 Thread Gadi Sastiel
I have in httpd.conf:

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

# Configure mod_proxy_html to understand HTML4/XHTML1
IfModule proxy_html_module
Include conf/extra/proxy-html.conf
/IfModule

LoadModule jk_module modules/mod_jk.so

Gadi

On Tue, Sep 30, 2014 at 4:38 PM, Daniel Mikusa dmik...@pivotal.io wrote:

 On Tue, Sep 30, 2014 at 9:04 AM, Gadi Sastiel gadi.sast...@gmail.com
 wrote:

  Hi , we are behind Apache. , we have HTTP and AJP connectors.
  Java 1.7.17 it was reproduced on Latest chrome and firefox
 

 I've seen similar issues when Apache HTTPD is not configured correctly.
 How are you proxying requests to your Tomcat server? mod_proxy? mod_jk?
 Can you include relevant configuration?


  I can see the request on the tomcat access log.
 

 Can you include the log entries from both HTTPD  Tomcat?

 Dan


 On Tue, Sep 30, 2014 at 2:59 PM, Konstantin Kolinko 
 knst.koli...@gmail.com
  wrote:
 
   2014-09-30 15:30 GMT+04:00 Gadi Sastiel gadi.sast...@gmail.com:
Hi all,
   
   
   
Tomcat version 7.0.30
   
Operating System – Windows server 2008 and above.
   
   
   
When I concatenate “ ( quotes)  to the end of the url when accessing
 a
   jsp
   
for example:  /pages/somePage.jsp”
   
The browser returns the source code of the JSP.
   
   
   
Does anyone see such a behavior before ?
   
  
   I cannot reproduce this with the currently being tested 7.0.56
   (release candidate), nor with the current Tomcat 6 and Tomcat 8.
  
   Is your Tomcat directly accessible via HTTP port, or it is behind
   another HTTP server (IIS, Apache HTTPD)?  What Connector is used to
   access it (Bio/Nio/Apr,  HTTP or AJP protocol)?
  
   What web browser are you using? What version of Java is used to run it?
  
  
How can I filter it out ?
  
   That depends on the root cause.
  
   Is the source code displayed by Tomcat or by other web server? Is this
   request mentioned in Tomcat access log file?
  
  
   Best regards,
   Konstantin Kolinko
  
   -
   To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
   For additional commands, e-mail: users-h...@tomcat.apache.org
  
  
 



Re: Tomcat returns Jsp source code as text/plain to the browser

2014-09-30 Thread Daniel Mikusa
On Tue, Sep 30, 2014 at 10:32 AM, Gadi Sastiel gadi.sast...@gmail.com
wrote:

 I have in httpd.conf:

 LoadModule proxy_module modules/mod_proxy.so
 LoadModule proxy_http_module modules/mod_proxy_http.so

 # Configure mod_proxy_html to understand HTML4/XHTML1
 IfModule proxy_html_module
 Include conf/extra/proxy-html.conf
 /IfModule

 LoadModule jk_module modules/mod_jk.so


Looks like you're loading both mod_proxy  mod_jk.  Which one are you
using?  There should be more to this config.  Possibly some ProxyPass
statements or a JkMount?

Dan




 Gadi

 On Tue, Sep 30, 2014 at 4:38 PM, Daniel Mikusa dmik...@pivotal.io wrote:

  On Tue, Sep 30, 2014 at 9:04 AM, Gadi Sastiel gadi.sast...@gmail.com
  wrote:
 
   Hi , we are behind Apache. , we have HTTP and AJP connectors.
   Java 1.7.17 it was reproduced on Latest chrome and firefox
  
 
  I've seen similar issues when Apache HTTPD is not configured correctly.
  How are you proxying requests to your Tomcat server? mod_proxy? mod_jk?
  Can you include relevant configuration?
 
 
   I can see the request on the tomcat access log.
  
 
  Can you include the log entries from both HTTPD  Tomcat?
 
  Dan
 
 
  On Tue, Sep 30, 2014 at 2:59 PM, Konstantin Kolinko 
  knst.koli...@gmail.com
   wrote:
  
2014-09-30 15:30 GMT+04:00 Gadi Sastiel gadi.sast...@gmail.com:
 Hi all,



 Tomcat version 7.0.30

 Operating System – Windows server 2008 and above.



 When I concatenate “ ( quotes)  to the end of the url when
 accessing
  a
jsp

 for example:  /pages/somePage.jsp”

 The browser returns the source code of the JSP.



 Does anyone see such a behavior before ?

   
I cannot reproduce this with the currently being tested 7.0.56
(release candidate), nor with the current Tomcat 6 and Tomcat 8.
   
Is your Tomcat directly accessible via HTTP port, or it is behind
another HTTP server (IIS, Apache HTTPD)?  What Connector is used to
access it (Bio/Nio/Apr,  HTTP or AJP protocol)?
   
What web browser are you using? What version of Java is used to run
 it?
   
   
 How can I filter it out ?
   
That depends on the root cause.
   
Is the source code displayed by Tomcat or by other web server? Is
 this
request mentioned in Tomcat access log file?
   
   
Best regards,
Konstantin Kolinko
   
-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org
   
   
  
 



Re: Tomcat returns Jsp source code as text/plain to the browser

2014-09-30 Thread André Warnier

Gadi Sastiel wrote:

I have in httpd.conf:

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

# Configure mod_proxy_html to understand HTML4/XHTML1
IfModule proxy_html_module
Include conf/extra/proxy-html.conf
/IfModule

LoadModule jk_module modules/mod_jk.so

Gadi


Maybe to gain some time, let me point you to the explanation of what both Konstantin and 
Daniel are looking for :

https://tomcat.apache.org/connectors-doc/reference/apache.html
See the text in red ?

In more words : a frequent configuration error in such cases (where Apache httpd in a 
front-end for Tomcat, and both are on the same machine), is to allow Apache httpd to see 
the contents of the Tomcat application directories (/webapps/*).
Tomcat knows that a JSP page is something which has to be processed, and that it is the 
result that should be returned to the client, not the source.

But httpd doesn't know that, and for him a JSP page is just text, and it 
returns it as is.

So if the URL of the request is such, that Apache does not think that this request has to 
be forwarded to Tomcat, it will try to process this request itself.  And if it can do that 
(aka it sees the directory where this file is located, and the file in it), then it will 
return that page itself to the client, as text.


And that seems to be what you are seeing.  From there comes the suspicion of Konstantin 
and Daniel, because Tomcat, correctly configured, wouldn't do that.


Except that you mention somwhere else that the request is visible in the Tomcat access 
log.  That would normally mean that httpd /is/ forwarding this request to Tomcat, and that 
the error is on the Tomcat side.  So before going any further, make absolutely sure that 
that is the case, and that it is really /this/ request that you are seeing in the tomcat 
logs.  Otherwise everyone is going to lose a lot of time searching in the wrong places.



-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org