RE: Static Resources - Runtime Problems

2011-05-24 Thread Caldarale, Charles R
From: Jay, Michael [mailto:em...@ufl.edu] Subject: Static Resources - Runtime Problems I must be overlooking something very basic. A) Not telling us the version of Tomcat you're using, the JVM level, the platform it's all running on, and whether or not you're running Tomcat stand-alone or

RE: Static Resources - Runtime Problems

2011-05-24 Thread Caldarale, Charles R
From: Caldarale, Charles R Subject: RE: Static Resources - Runtime Problems C) Configuring a loop in your filter declarations. Post your WEB-INF/web.xml so we can look at it. Might not be in filter declarations; could easily be just the servlet mapping you've set up. - Chuck

RE: Static Resources - Runtime Problems

2011-05-24 Thread Martin Gainty
!-- what you are forwarding/redirecting to must be mapped so in one of my web.xml i have --. servlet-mapping servlet-namefreemarker/servlet-name url-pattern*.ftl/url-pattern /servlet-mapping servlet-mapping servlet-namelayoutServlet/servlet-name

RE: Static Resources - Runtime Problems

2011-05-24 Thread Jay, Michael
I apologize for the insufficient data. The goal is to foward the user to google.com to login and on successful authentication, reveal the original page desired. The original author used a .jsp that simply produces itself. But that's a separate issue--I think. I've not been able to capture an

RE: Static Resources - Runtime Problems

2011-05-24 Thread Mikolaj Rydzewski
On Tue, 24 May 2011 10:47:32 -0400, Jay, Michael wrote: IMHO code that follows pattern try { ... something } catch (Exception e) { System.out(oops); } ... try { ... something } catch (Exception e) { System.out(oops); } deserves only /dev/null as a permanent storage destination. -- Mikolaj

Re: Static Resources - Runtime Problems

2011-05-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Michael, On 5/24/2011 10:47 AM, Jay, Michael wrote: I apologize for the insufficient data. The goal is to foward the user to google.com to login and on successful authentication, reveal the original page desired. The original author used a .jsp

RE: Static Resources - Runtime Problems

2011-05-24 Thread Jay, Michael
conditions. I'll try again to isolate the error. mj -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Tuesday, May 24, 2011 2:23 PM To: Tomcat Users List Subject: Re: Static Resources - Runtime Problems -BEGIN PGP SIGNED MESSAGE- Hash: SHA1

RE: Static Resources - Runtime Problems

2011-05-24 Thread Caldarale, Charles R
From: Jay, Michael [mailto:em...@ufl.edu] Subject: RE: Static Resources - Runtime Problems I haven't mapped the .htm to anything. Actually, you have: servlet-mapping servlet-nameHRSurveyLogin/servlet-name url-pattern//url-pattern /servlet-mapping

RE: Static Resources - Runtime Problems

2011-05-24 Thread Jay, Michael
To: Tomcat Users List Subject: RE: Static Resources - Runtime Problems From: Jay, Michael [mailto:em...@ufl.edu] Subject: RE: Static Resources - Runtime Problems I haven't mapped the .htm to anything. Actually, you have: servlet-mapping servlet-nameHRSurveyLogin/servlet-name

RE: Static Resources - Runtime Problems

2011-05-24 Thread Bill Miller
, Michael [mailto:em...@ufl.edu] Sent: May 24, 2011 4:21 PM To: 'Tomcat Users List' Subject: RE: Static Resources - Runtime Problems That was gnawing at the back of my mind a little bit. So how would you have an entry point servlet run at a simple address without consuming everything in that path

Re: Static Resources - Runtime Problems

2011-05-24 Thread Mark Thomas
Resources - Runtime Problems From: Jay, Michael [mailto:em...@ufl.edu] Subject: RE: Static Resources - Runtime Problems I haven't mapped the .htm to anything. Actually, you have: servlet-mapping servlet-nameHRSurveyLogin/servlet-name url-pattern//url

RE: Static Resources - Runtime Problems

2011-05-24 Thread Jay, Michael
Thanks! -Original Message- From: Bill Miller [mailto:millebi.subscripti...@gmail.com] Sent: Tuesday, May 24, 2011 4:32 PM To: 'Tomcat Users List' Subject: RE: Static Resources - Runtime Problems Using a filter would insert the entry point of the Servlet into an entire path