Re: MVC problem

2000-12-05 Thread Kedar Choudary
From: Craig R. McClanahan <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, November 30, 2000 11:27 PM Subject: Re: MVC problem > See below. > > "Aiken, David" wrote: > > > > hi all.. > > > > >

Re: MVC problem

2000-12-01 Thread Craig R. McClanahan
"Aiken, David" wrote: > Thanks for the feedback.. we'll digest this for a bit to determine a > suitable strategy. Any idea when tomcat 4.0 will be stable? > Well, it works for me ... :-) There have been well over 10,000 downloads of 4.0-m4 since it was released (ironically, exactly a month ago)

RE: MVC problem

2000-12-01 Thread Aiken, David
x27;[EMAIL PROTECTED]' Subject: Re: MVC problem "Aiken, David" wrote: > "No file contained in the WEB-INF directory may be served directly to a > client." > > That seems pretty clear.. we tried directly accessing JSP pages using a URL > of the form http:

Re: MVC problem

2000-11-30 Thread Craig R. McClanahan
PROTECTED]] > Sent: Thursday, November 30, 2000 12:43 PM > To: [EMAIL PROTECTED] > Cc: '[EMAIL PROTECTED]' > Subject: Re: MVC problem > > "Aiken, David" wrote: > > > That sounds workable.. i looked for an archive of this newsgroup but > didn't > &g

RE: MVC problem

2000-11-30 Thread Aiken, David
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 30, 2000 12:43 PM To: [EMAIL PROTECTED] Cc: '[EMAIL PROTECTED]' Subject: Re: MVC problem "Aiken, David" wrote: > That sounds workable.. i looked for an archive of thi

Re: MVC problem

2000-11-30 Thread Craig R. McClanahan
"Aiken, David" wrote: > That sounds workable.. i looked for an archive of this newsgroup but didn't > have any luck - do you know where the relevant section in the JSP/servlet > spec is? > Do you mean the restriction on serving things from WEB-INF directly to the client? Servlet 2.2 Spec, Secti

RE: MVC problem

2000-11-30 Thread Aiken, David
AM To: [EMAIL PROTECTED] Subject: Re: MVC problem I believe one solution offerred previously on this list (thank you Craig!) was to place all of your .jsp pages underneath /WEB-INF (e.g. /WEB-INF/jsp/...) Since these can never be served up (goes against the jsp/servlet spec) HTH, Mike At

Re: MVC problem

2000-11-30 Thread Craig R. McClanahan
See below. "Aiken, David" wrote: > > hi all.. > > > > We're hitting a problem with the MVC approach in tomcat. > > > > Our controller is designed to intercept all requests for URLs within our > > web application so that it can handle internationalization and security > > checks centrally. > > >

Re: MVC problem

2000-11-30 Thread Mike La Budde
I believe one solution offerred previously on this list (thank you Craig!) was to place all of your .jsp pages underneath /WEB-INF (e.g. /WEB-INF/jsp/...) Since these can never be served up (goes against the jsp/servlet spec) HTH, Mike At 11/30/2000 10:20 AM -0600, you wrote: > > hi all.