RE: Why Tiles?

2002-06-23 Thread Arik Levin ( Tikal )
There's a good article about UI design. I think you'll get the answer there. (I did). http://www.javaworld.com/javaworld/jw-01-2002/jw-0104-tilestrut.html -Original Message- From: Trieu, Danny [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 20, 2002 9:56 PM To: 'Struts Users Mailing

RE: Weblogic 5.1 + commons.logging

2002-06-23 Thread Arik Levin ( Tikal )
Look at the archive. Your problem can be resolved in two ways. You can build commons-logging specific for log4j. Your message about ClassNotFoundException is true, look at your jar and you'll found out that there is missing class LogFactoryImpl and some other classes. Build commons-logging with

Forwarding to action

2002-06-23 Thread @Basebeans.com
Subject: Forwarding to action From: Davor Cengija [EMAIL PROTECTED] === [Warning: new Struts user ] Is it possible to return a forward to another action (e.g. to chain actions)? For example: DeleteSomethingAction if (isCanceled(request)) { // now I want to return to ListSomethingAction,

RE: Forwarding to action

2002-06-23 Thread Tero P Paananen
Is it possible to return a forward to another action (e.g. to chain actions)? Yes. -TPP -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Forwarding to action

2002-06-23 Thread Ted Husted
A URI for an ActionForward is a URI for an ActionForward. It doesn't matter if it is mapped as an Action, or goes to another servlet, or is Handled by the container as a HTML page or a JSP. If this mapping doesn't work, it's not because of the way the forward is setup. -- Ted Husted, Husted dot

Re: Forwarding to action

2002-06-23 Thread Ted Husted
Try it and see =:0) The only thing to watch for is that the ActionServlet doesn't distinguish between requests. If you forward to another mapping, the ActionServlet will run through the usual gauntlet, which includes calling reset and autopopulating any ActionForm bean. So, if you set a property

Re: Forwarding to action

2002-06-23 Thread @Basebeans.com
Subject: Re: Forwarding to action From: Davor Cengija [EMAIL PROTECTED] === Tero P Paananen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Is it possible to return a forward to another action (e.g. to chain actions)? Yes. Excellent! However, I'm not able to find that

RE: Re: Forwarding to action

2002-06-23 Thread Tero P Paananen
Is it possible to return a forward to another action (e.g. to chain actions)? Yes. Excellent! However, I'm not able to find that class/method. Hint? ActionForward forward = mapping.findForward( your_forward_name ); return forward; Define the forward in your struts-config.xml

Re: Re: Forwarding to action

2002-06-23 Thread @Basebeans.com
Subject: Re: Re: Forwarding to action From: Davor Cengija [EMAIL PROTECTED] === Tero P Paananen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Is it possible to return a forward to another action (e.g. to chain actions)? Yes. Excellent! However, I'm not

Re: Why digester?

2002-06-23 Thread Adolfo Miguelez
Impresive explanation Craig, :-o Many thanks, Adolfo From: Craig R. McClanahan [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Why digester? Date: Sat, 22 Jun 2002 12:17:32 -0700 (PDT) On Sat, 22 Jun

Re: Multiple Select Problem

2002-06-23 Thread Sandeep Takhar
try using an array list. I think you need something that can be converted to an iterator?? sandeep --- Dave Weis [EMAIL PROTECTED] wrote: Hello I'm trying to make a multiple select on a form. I can't seem to get the correct type signatures on the getter and setter in the form. When I

Re: Making Action object as singleton

2002-06-23 Thread Sandeep Takhar
I'm pretty sure that action objects are created only once by the server. this question may have been answered before if this is not what you are looking for. sandeep --- Bhattad, Nilesh [EMAIL PROTECTED] wrote: Hello I have an Action object which is common for all JSP pages. It doesn't

Help ! html:link tag and weblogic 6.1

2002-06-23 Thread Jonathan Ackerman
Hi All, I'm having a problem with the html:link tag and weblogic 6.1 No matter which approach I use (a MAP or a bean) the parameters for my link do not show up. The code I'm using works fine under Tomcat, but not under weblogic. However since I can't find anyone reporting a similar problem I

FW: Help ! html:link tag and weblogic 6.1

2002-06-23 Thread Jonathan Ackerman
Problem solved. Just weblogic getting all twisted and bitter Killing off Weblogic's temporary files seems to have fixed the problem. Weird that these survived the server restarts and the fresh builds of the system :( Jonathan -Original Message- From: Jonathan Ackerman

Re: Multiple Select Problem

2002-06-23 Thread Dave Weis
On Sun, 2002-06-23 at 17:57, Sandeep Takhar wrote: try using an array list. I think you need something that can be converted to an iterator?? I'm trying to make a multiple select on a form. I can't seem to get the correct type signatures on the getter and setter in the form. When I

RE: Multiple Select Problem

2002-06-23 Thread VEDRE, RANAPRATAP REDDY
Look at pager tag library. This was listed in official struts resources page http://jsptags.com/tags/navigation/pager/pager-demo.jsp?style=jsptags -Original Message- From: Dave Weis [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 23, 2002 10:12 PM To: Struts Users Mailing List Subject:

Re: password and where has my password gone ?

2002-06-23 Thread gnanaseelan
Hi I am gnanaseelan, i think in the settter method of the userpasssword ,the value is resetted pls check it out bye gnan - Original Message - From: Barbara Post [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 21, 2002 7:06 PM Subject: html: password and where has my

problem

2002-06-23 Thread gnanaseelan
Hi I am Gnan I am new to struts , and i have a problem. i have 3 jsps ,each jsp captures data from user and in the corresponding Action class i construct a Value Object and keep that in seession and forwards the request to next Jsp. My problem is i have a BACK Button in 2rd and 3rd jsp which

Multibox intial selection problem

2002-06-23 Thread gnanaseelan
Hi i am new to struts ,can any one suggest how could a multibox be intially selected based on a condition in jsp Thx in advance GS