Capturing Previous Action Request

2004-02-01 Thread David Liles
I am working on a work-flow web app and need to provide the user with the ability to navigate back to their previous page by the use of a back button within the web app not the browser's back button. How can I capture the action mapping that was processed in order to allow the user to

back navigation in web app

2004-01-30 Thread David Liles
I am working on a multi-step work flow web app and need to give the users the ability to navigate back to the previous screen by use of a button within the app. I've heard others do this by creating a stack and placing each previous request into the stack. I would like to know if this is the

RE: reference non-String/complex JavaBean attributes via struts-bean tag library?

2004-01-20 Thread David Liles
. Thanks. Please send it to [EMAIL PROTECTED] instead of [EMAIL PROTECTED] Thanks again. At 08:52 PM 1/17/2004, David Liles wrote: Mike, If I understand you correctly, you have a bean that contains an arraylist which also contains an arraylist? If this is the case, I just resolved this issue

DispatchAction question

2004-01-17 Thread David Liles
I just started working on an app and my action classes extend DisptachAction. I was wondering if there will be a problem if my action class supports multiple forms The action mapping in the struts-config.xml file has an input attribute indicating which jsp the request came from what

RE: reference non-String/complex JavaBean attributes via struts-bean tag library?

2004-01-17 Thread David Liles
Mike, If I understand you correctly, you have a bean that contains an arraylist which also contains an arraylist? If this is the case, I just resolved this issue myself. I have bean A that contains a ArrayList getOtherArrayList() method the other arraylist contains attributes of

design suggestion

2004-01-11 Thread David Liles
I am currently in the design phase of a project and am struggling with which way to go This is going to be a workflow application that allows the users to submit various request. There are several workflows that will share common functionality (list users, list organizations, etc). I'm

RE: design suggestion

2004-01-11 Thread David Liles
To: Struts Users Mailing List Subject: RE: design suggestion How about combining the two, and build basic superclass of CRUD, and then extends them in specific use? Just a thought. Patrick. -Original Message- From: David Liles [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 7:01 AM

previous page navigation

2004-01-10 Thread David Liles
I am working on a Struts web app and need to find a relatively simple way to allow the user to navigate to their previous page. How can I dynamically redirect the user back through the action mapping that got them to their present location within the web app? Thanks -Dave

data source in struts-config

2003-11-14 Thread David Liles
Please excuse my ignorance... but I haven't been able to find an example that show how the data-source tag is used in struts I've looked at several of the examples and I don't see where the properties that are set in the xml file get referenced. How are these pulled into a servlet to be

RE: data source in struts-config

2003-11-14 Thread David Liles
data access packages, like iBATIS, Hibernate, and OJB, provide their own mechanisms, which do not need to be exposed to Struts. HTH, Ted. David Liles wrote: Please excuse my ignorance... but I haven't been able to find an example that show

RE: Can't Find Source For Struts 1.0.2

2003-11-13 Thread David Liles
Try this link http://archive.apache.org/dist/jakarta/struts/old/release/v1.0.2/ -Original Message- From: Hohlen, John C [mailto:[EMAIL PROTECTED] Sent: Thu 11/13/2003 8:32 AM To: Struts-User (E-mail) Cc: Subject: Can't Find Source

RE: struts application with frames: top, side menus and main screen

2003-11-13 Thread David Liles
I am currently working on a site that is frame based for each of the pages that are to be displayed I reference the action mapping for each of the src tags. -Original Message- From: neso m [mailto:[EMAIL PROTECTED] Sent: Thu 11/13/2003 2:02 PM

RE: struts application with frames: top, side menus and main screen

2003-11-13 Thread David Liles
David Liles [EMAIL PROTECTED] wrote: I am currently working on a site that is frame based for each of the pages that are to be displayed I reference the action mapping for each of the src tags. -Original Message- From: neso m [mailto:[EMAIL

RE: struts application with frames: top, side menus and main screen

2003-11-13 Thread David Liles
/13/2003 2:49 PM To: Struts Users Mailing List Cc: Subject: RE: struts application with frames: top, side menus and main screen Thanks for your answers. Do you have any documents, how to, etc to point me too? Neso David Liles [EMAIL PROTECTED] wrote

RE: Where is Struts 1.0.2 distribution???

2003-11-12 Thread David Liles
I believe on the jakarta struts site there is a link to archived downloads... try this: http://archive.apache.org/dist/jakarta/struts/ -Original Message- From: Anthony Leonard [mailto:[EMAIL PROTECTED] Sent: Wed 11/12/2003 8:58 AM To: [EMAIL

RE: Show validation error messages next to the corresponding inpu t fields

2003-11-12 Thread David Liles
Try this... tr tdbean:message key=logon.jsp.username /:/td tdhtml:text property=username size=15 maxlength=15 //td /tr tr tdhtml:errors property=username //td /tr -Original Message- From: Kevin Wang [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 8:39

RE: Servlet filter and Struts

2003-11-11 Thread David Liles
If you're looking for a simple solution I've used the following snippet of code: % if(session.getAttribute(valid) == null) { % script language=JavaScript document.location=('/Logon.do'); /script % } % I place it in a JSP and then use a jsp include tag in each of the jsp pages I want secure.

RE: Servlet filter and Struts

2003-11-11 Thread David Liles
exciting features, such as persistent logins, coming in a future release. -Max - Original Message - From: David Liles [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, November 11, 2003 4:14 AM

RE: ResourceBundle not available in ActionForm

2003-11-11 Thread David Liles
Not sure if it matters, but is there a difference as to where the reference should be located (ie: web.xml vs. struts-config.xml) between Struts 1.0 and 1.1? -Original Message- From: alvin antony [mailto:[EMAIL PROTECTED] Sent: Tue 11/11/2003 9:42 AM

RE: Struts Config for JRun FYI....

2003-11-10 Thread David Liles
on jrun 3.1. See this email in the archive (which refers to struts 1.0.2 but the change works for 1.1) http://marc.theaimsgroup.com/?l=struts-userm=103652624602001w=2 Let me know if you need more help. H. -Original Message- From: David Liles [mailto:[EMAIL PROTECTED] Sent: Sunday, November

Configuration Trouble

2003-11-09 Thread David Liles
I am having trouble getting a struts web app to work on a JRun 3.0 SP2a server. When I develop and test locally (JBuilder 7) I do not have any problems, but as soon as I deploy the war to the JRun server I get errors. All of the necessary jar files are in the web app/WEB-INF/lib folder and not

RE: Configuration Trouble

2003-11-09 Thread David Liles
- From: David Liles [mailto:[EMAIL PROTECTED] Sent: Sunday, November 09, 2003 12:02 PM To: [EMAIL PROTECTED] Subject: Configuration Trouble I am having trouble getting a struts web app to work on a JRun 3.0 SP2a server. When I develop and test locally (JBuilder 7) I do not have any problems

RE: Configuration Trouble

2003-11-09 Thread David Liles
classes or taglibs are called from that index.jsp? Regards, David -Original Message- From: David Liles [mailto:[EMAIL PROTECTED] Sent: Sunday, November 09, 2003 12:02 PM To: [EMAIL PROTECTED] Subject: Configuration Trouble I am having trouble getting a struts web app to work on a JRun 3.0 SP2a

RE: Configuration Trouble

2003-11-09 Thread David Liles
A? starting Application.resources and forget to update your struts-config.xml file? The JRUN error says it is the message resources (that config line above) which has no resources file, hence the struts app failing. Regards, David -Original Message- From: David Liles [mailto:[EMAIL

RE: Configuration Trouble

2003-11-09 Thread David Liles
into problems with Log4j , can solve this by puting Log4j.jar unter server/lib folder, I knew it is not very nice. HTH, Alvin David Liles [EMAIL PROTECTED] wrote: I've double checked the path and I have the file in the classes\resources folder named application.properties. It is all lower case so I

RE: Configuration Trouble

2003-11-09 Thread David Liles
with 3.0 but only with 3.1 and Jrun 4. It is worth to test with the new version. Alvin David Liles [EMAIL PROTECTED] wrote: Thanks for the info I've moved the log4j.jar file to servers/lib and restarted the app and still have the same problem. This is the first Struts project deployed

RE: Configuration Trouble

2003-11-09 Thread David Liles
. Alvin David Liles [EMAIL PROTECTED] wrote: Thanks for the info I've moved the log4j.jar file to servers/lib and restarted the app and still have the same problem. This is the first Struts project deployed on this server since being rebuilt so I know there are no other struts.jar files

Struts Config for JRun FYI....

2003-11-09 Thread David Liles
I'm not sure if this is old news or not, but hopefully it might be of help to others I've spent most of the weekend trying to configure a Struts 1.1 web app on a JRun 3.x server. When I would try and start the web app the event log would show an error indicating that it could not

Action Class not displaying

2003-10-24 Thread David Liles
I just downloaded v1.1 and have things working. some-what. I have two simple action mappings that redirect to a jspthese are working. I'm trying to create an action mapping that refers to a action class and sends the user to the specified jsp. Currently there is no logic in the

Action class

2003-10-24 Thread David Liles
I just downloaded v1.1 and have things working. some-what. I have two simple action mappings that redirect to a jspthese are working. I'm trying to create an action mapping that refers to a action class and sends the user to the specified jsp. Currently there is no logic in the

Can I get an answer?

2003-10-24 Thread David Liles
I am using struts 1.1 and have a link on a page that makes a javascript call to open a popup window and execute the requested action. Below is the action mapping in the struts-config.xml file: action path=/ReadMessage type=com.dynamichostings.mailclient.actions.MessageAction forward

RE: Action Class not displaying

2003-10-24 Thread David Liles
-Original Message- From: David Liles [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2003 1:31 PM To: [EMAIL PROTECTED] Subject: Action Class not displaying I just downloaded v1.1 and have things working. some

RE: Can I get an answer?

2003-10-24 Thread David Liles
Users Mailing List Cc: Subject: Re: Can I get an answer? david Liles wrote: I am using struts 1.1 and have a link on a page that makes a javascript call to open a popup window and execute the requested action. Below is the action