RE: ActionClass

2004-02-24 Thread McClung, Brian
riginal Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 4:55 PM To: Struts Users Mailing List Subject: RE: ActionClass are you saying about getRequestURL()? can you shed some light on it?? -R -Original Message- From: McClung, Brian

RE: ActionClass

2004-02-23 Thread Ramadoss Chinnakuzhandai
are you saying about getRequestURL()? can you shed some light on it?? -R -Original Message- From: McClung, Brian [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 5:08 PM To: 'Struts Users Mailing List' Subject: RE: ActionClass You can always try to pull the refere

RE: ActionClass

2004-02-23 Thread McClung, Brian
You can always try to pull the referer from the request. But that can be unreliable. Brian -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 4:07 PM To: Struts Users Mailing List Subject: RE: ActionClass tnx for your

RE: ActionClass

2004-02-23 Thread Ramadoss Chinnakuzhandai
Original Message- From: McClung, Brian [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 4:50 PM To: 'Struts Users Mailing List' Subject: RE: ActionClass I have created a Dynamic Action class (DynaAction) that allows a page to define where resulting action states should

RE: ActionClass

2004-02-23 Thread McClung, Brian
} return aForward; } } -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 3:38 PM To: Struts Users Mailing List Subject: RE: ActionClass for example XYZAction class handle multiple request coming

RE: ActionClass

2004-02-23 Thread Avinash Gangadharan
Are'nt you talking about what DispatchAction class does ??? -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 1:38 PM To: Struts Users Mailing List Subject: RE: ActionClass for example XYZAction class handle multiple re

RE: ActionClass

2004-02-23 Thread Ramadoss Chinnakuzhandai
coming from. -Ramadoss -Original Message- From: Max Cooper [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 4:08 PM To: Struts Users Mailing List Subject: Re: ActionClass Define what you mean by "where the request is coming from" and what kind of processing you

Re: ActionClass

2004-02-23 Thread Max Cooper
Define what you mean by "where the request is coming from" and what kind of processing you would like to optionally perform. It is not clear what you are trying to accomplish -- give some more details so we can help. -Max - Original Message - From: "Ramadoss Chinnakuzhandai" <[EMAIL PROT

Re: ActionClass + input field validation

2001-01-26 Thread John Hunt
Craig I tried migrating to a new version And I am getting this exception. I used template tags They were working fine with old action.xml config file format but now I am getting this .. What could be the reason. javax.servlet.jsp.JspTagException: Since tag handler class org.apache.struts.taglib.t

Re: ActionClass + input field validation

2001-01-26 Thread Rajan Gupta
Remember reading in the example that if u make the scope="session" for your ActionForm it will do the trick for u. --- John Hunt <[EMAIL PROTECTED]> wrote: > Hi > Suppose I have an ActionForm class for some validation > stuff and after that the associated Action class does > some more validation.

Re: ActionClass + input field validation

2001-01-26 Thread Craig R. McClanahan
John Hunt wrote: > Thanks Craig. BTW I am using a bit older version. > I have errors tag in two tld. One is struts.tld and > the other is struts-form.tld. Which one is responsible > for displaying the error messages associated with > Action and which one is with the form. Thanks again > The tags

Re: ActionClass + input field validation

2001-01-26 Thread John Hunt
Thanks Craig. BTW I am using a bit older version. I have errors tag in two tld. One is struts.tld and the other is struts-form.tld. Which one is responsible for displaying the error messages associated with Action and which one is with the form. Thanks again --- "Craig R. McClanahan" <[EMAIL PROT

Re: ActionClass + input field validation

2001-01-26 Thread Craig R. McClanahan
John Hunt wrote: > Craig > I am not using form:form tag. I just use the normal > html tags for sending the data. I use ActionForm for > manipulating them at the server side. Well, that is your problem then. It is the tags like that automatically look up the previous values and display them. Y

Re: ActionClass + input field validation

2001-01-26 Thread John Hunt
Craig I am not using form:form tag. I just use the normal html tags for sending the data. I use ActionForm for manipulating them at the server side. --- John Hunt <[EMAIL PROTECTED]> wrote: > > My input page doesnt seem to be retaining the values > when the Action class does the forward back to t

Re: ActionClass + input field validation

2001-01-26 Thread John Hunt
My input page doesnt seem to be retaining the values when the Action class does the forward back to the input. Prob2: I use ActionErros class and I add erros I encounter in the Action class to the ActionErros. And in the input page I use tag. But the error messages arent getting displayed. What

Re: ActionClass + input field validation

2001-01-26 Thread Craig R. McClanahan
John Hunt wrote: > Hi > Suppose I have an ActionForm class for some validation > stuff and after that the associated Action class does > some more validation > If ActionForm class validation fails then the request > is forwarded back to the input page and the page is > redisplayed and the wh