Re: Rendering JSP files through Apache

2015-04-09 Thread Mark Thomas
On 09/04/2015 19:50, George Sexton wrote: Chris On 4/9/2015 10:06 AM, Christopher Schultz wrote: Just my two cents, but any server that works the way you want is not compliant with the servlet specification. It states that all requests for a context must be passed to the container. ??

Re: Rendering JSP files through Apache

2015-04-09 Thread David kerber
On 4/9/2015 3:06 PM, George Sexton wrote: On 4/9/2015 12:58 PM, Caldarale, Charles R wrote: From: George Sexton [mailto:geor...@mhsoftware.com] Subject: Re: Rendering JSP files through Apache My reading of it says that any request that matches a known context path must be routed to the web

Re: Rendering JSP files through Apache

2015-04-09 Thread George Sexton
On 4/9/2015 10:06 AM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 George, On 4/9/15 10:52 AM, George Sexton wrote: On 4/8/2015 6:15 PM, Leggio, Andrew wrote: This contains both HTML and JSP. I would like the HTML to be handled through Apache and JSP pages to

Re: Rendering JSP files through Apache

2015-04-09 Thread George Sexton
Chris On 4/9/2015 10:06 AM, Christopher Schultz wrote: Just my two cents, but any server that works the way you want is not compliant with the servlet specification. It states that all requests for a context must be passed to the container. ?? The servlet spec doesn't apply to environments,

Re: Rendering JSP files through Apache

2015-04-09 Thread George Sexton
On 4/9/2015 1:10 PM, David kerber wrote: You can argue about whether it's smart to map servlets into .html, but again my reading of the spec is that unequivocally, if the request path matches a deployed context, the request must be routed to the context/container. Then your reading is

RE: Rendering JSP files through Apache

2015-04-09 Thread Caldarale, Charles R
From: George Sexton [mailto:geor...@mhsoftware.com] Subject: Re: Rendering JSP files through Apache My reading of it says that any request that matches a known context path must be routed to the web application. It seems pretty cut and dried to me. That's true only when the request

Re: Rendering JSP files through Apache

2015-04-09 Thread Mark Eggers
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 4/9/2015 12:18 PM, George Sexton wrote: On 4/9/2015 1:10 PM, David kerber wrote: You can argue about whether it's smart to map servlets into .html, but again my reading of the spec is that unequivocally, if the request path matches a

Re: Rendering JSP files through Apache

2015-04-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Andrew, On 4/8/15 8:15 PM, Leggio, Andrew wrote: This contains both HTML and JSP. I would like the HTML to be handled through Apache and JSP pages to be handled by TOMCAT. Okay. Just curious: why? How do I accomplish this? - From your other

Re: Rendering JSP files through Apache

2015-04-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 George, On 4/9/15 10:52 AM, George Sexton wrote: On 4/8/2015 6:15 PM, Leggio, Andrew wrote: This contains both HTML and JSP. I would like the HTML to be handled through Apache and JSP pages to be handled by TOMCAT. How do I accomplish this?

Re: Rendering JSP files through Apache

2015-04-09 Thread George Sexton
On 4/9/2015 12:58 PM, Caldarale, Charles R wrote: From: George Sexton [mailto:geor...@mhsoftware.com] Subject: Re: Rendering JSP files through Apache My reading of it says that any request that matches a known context path must be routed to the web application. It seems pretty cut and dried

Re: Rendering JSP files through Apache

2015-04-09 Thread David kerber
On 4/9/2015 3:03 PM, George Sexton wrote: On 4/9/2015 10:06 AM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 George, On 4/9/15 10:52 AM, George Sexton wrote: On 4/8/2015 6:15 PM, Leggio, Andrew wrote: This contains both HTML and JSP. I would like the HTML to

Re: Rendering JSP files through Apache

2015-04-09 Thread Mark Thomas
On 09/04/2015 20:18, George Sexton wrote: On 4/9/2015 1:10 PM, David kerber wrote: You can argue about whether it's smart to map servlets into .html, but again my reading of the spec is that unequivocally, if the request path matches a deployed context, the request must be routed to the

Re: Rendering JSP files through Apache

2015-04-09 Thread George Sexton
: Wednesday, April 08, 2015 5:34 PM To: Tomcat Users List Subject: Re: Rendering JSP files through Apache Leggio, Andrew wrote: I have the following being used in my conf file: IfModule mod_proxy_ajp.so ProxyPass / ajp://localhost:8009/ /IfModule Does this actually direct jsp files to use Tomcat

Re: Rendering JSP files through Apache

2015-04-09 Thread David kerber
On 4/9/2015 3:18 PM, George Sexton wrote: On 4/9/2015 1:10 PM, David kerber wrote: You can argue about whether it's smart to map servlets into .html, but again my reading of the spec is that unequivocally, if the request path matches a deployed context, the request must be routed to the

RE: Rendering JSP files through Apache

2015-04-09 Thread Caldarale, Charles R
From: George Sexton [mailto:geor...@mhsoftware.com] Subject: Re: Rendering JSP files through Apache The problem is then that as a system, the container isn't compliant. What you're in essence saying is that the compliance of the system isn't a concern. My belief is that as a system

Re: Rendering JSP files through Apache

2015-04-08 Thread André Warnier
Leggio, Andrew wrote: I have the following being used in my conf file: IfModule mod_proxy_ajp.so ProxyPass / ajp://localhost:8009/ /IfModule Does this actually direct jsp files to use Tomcat? That is a funny way of putting it. What the above does - if everything else is installed and

RE: Rendering JSP files through Apache

2015-04-08 Thread Leggio, Andrew
Vice President | Phone P (914) 765-3206 | Fax ( (914) 765-3095 | andrew.leg...@mbia.com -Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: Wednesday, April 08, 2015 5:34 PM To: Tomcat Users List Subject: Re: Rendering JSP files through Apache Leggio, Andrew wrote