Re: Mapping Struts controller servlet to webapp root: trouble

2003-08-14 Thread Paul Yunusov
Hope that helps, Matt - Original Message - From: Paul Yunusov [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 11:51 AM Subject: Re: Mapping Struts controller servlet to webapp root: trouble On August 13, 2003 11:03 am, Bailey

Mapping Struts controller servlet to webapp root: trouble

2003-08-14 Thread Paul Yunusov
I was wondering if anyone has heard of issues arising when the contoller is mapped to a webapp's root. I am talking about this: servlet-mapping servlet-nameaction/servlet-name url-pattern/*/url-pattern /servlet-mapping where action is the Struts controller. Struts seems to return a 400

Re: Mapping Struts controller servlet to webapp root: trouble

2003-08-14 Thread Paul Yunusov
); } // Return the completed value return (value.toString()); } -Original Message- From: Paul Yunusov [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 6:02 PM To: Struts Users Mailing List Subject: Re: Mapping Struts controller servlet to webapp root: trouble

Re: Mapping Struts controller servlet to webapp root: trouble

2003-08-14 Thread Paul Yunusov
On August 13, 2003 06:56 pm, Craig R. McClanahan wrote: On Wed, 13 Aug 2003, Paul Yunusov wrote: Date: Wed, 13 Aug 2003 17:46:57 -0400 From: Paul Yunusov [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re

Re: Mapping Struts controller servlet to webapp root: trouble

2003-08-14 Thread Paul Yunusov
. That's why I am wondering if Struts supports this kind of mapping or not, or if this is a bug. Thanks, Paul - Original Message - From: Paul Yunusov [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 11:51 AM Subject: Re: Mapping

Re: Mapping Struts controller servlet to webapp root: trouble

2003-08-14 Thread Paul Yunusov
-defined actions. Can anyone confirm Struts does not support /* mapping for its controller servlet? Thank you, Paul -Original Message- From: Paul Yunusov [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 11:05 AM To: [EMAIL PROTECTED] Subject: Mapping Struts controller

Why is generateToken() protected?

2003-04-01 Thread Paul Yunusov
I think at least one reason is the wish to separate the business tier from the Struts API as in the business tier shall not call Struts methods mantra. Besides, generateToken() seems to be meant for collaboration with Struts tags. However, the cost of this decision is that direct extensibility

Re: design question about action chaining

2003-04-01 Thread Paul Yunusov
On Tuesday 01 April 2003 02:30 pm, Thorin Linderholm wrote: I have been tasked with porting an existing web application with it's own proprietary controller architecture to using Struts. As they are both web controller architectures, they have many similarities, but I'm running into one

Re: Why is generateToken() protected?

2003-04-01 Thread Paul Yunusov
On Tuesday 01 April 2003 02:45 pm, David Graham wrote: The Action class' token methods are moving to RequestUtils in 1.2 to allow the RequestProcessor to use them. Your classes can then use the token methods as well. David Good news! Paul From: Paul Yunusov [EMAIL PROTECTED

Re: design question about action chaining

2003-04-01 Thread Paul Yunusov
? Or is there an MVCC where there is a 'view' controller and 'buisness' controller (which seems a bit redundant to me.) Well, at one point you will wonder which is more cumbersome: coding Action classes or having a mile-long struts-config.xml. Paul -Original Message- From: Paul

Re: design question about action chaining

2003-04-01 Thread Paul Yunusov
of application from pre-defined action components. Why, I can. Paul On Tue, 1 Apr 2003 15:12:34 -0500, Paul Yunusov [EMAIL PROTECTED] wrote: On Tuesday 01 April 2003 03:00 pm, Thorin Linderholm wrote: The static method you suggest would be very cumbersome to implement and maintain

Re: Reporting an Exception message in a JSP.

2003-02-25 Thread Paul Yunusov
On Tuesday 25 February 2003 10:03 am, ROSSEL Olivier wrote: I want to display the error message of an SQLException in my JSP. At first, I tried to set an ActionError with this message and to display it via html:errors/. It does not work because ActionError accepts as an input string the key