RE: struts-config.xml question

2003-06-12 Thread Jerry Jalenak
ECTED] -Original Message- From: Dan Tarkenton [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 11:39 AM To: Struts Users Mailing List Subject: RE: struts-config.xml question Hey, talk about exactly what I was looking for. Thanks, Jerry. I'm perusing the download right now. Anyo

RE: struts-config.xml question

2003-06-12 Thread Dan Tarkenton
- From: Dan Tarkenton [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 10:59 AM To: [EMAIL PROTECTED] Subject: struts-config.xml question When defining an action element in the struts-config.xml file, we always utilize the path attribute. For example, I have two actions defined in my struts

RE: struts-config.xml question

2003-06-12 Thread Jerry Jalenak
: Thursday, June 12, 2003 10:59 AM To: [EMAIL PROTECTED] Subject: struts-config.xml question When defining an action element in the struts-config.xml file, we always utilize the path attribute. For example, I have two actions defined in my struts-config.xml *snippet

struts-config.xml question

2003-06-12 Thread Dan Tarkenton
When defining an action element in the struts-config.xml file, we always utilize the path attribute. For example, I have two actions defined in my struts-config.xml *snippet* */snippet* Say I want to make the first action element be invoked b

RE: struts-config.xml question

2002-10-03 Thread Kevin HaleBoyes
Victor and Emmanuel, thanks for your answers. With them, and the later discussion on similar topics I think I understand. Part of my confusion comes from a bug I've not been able to repeat. At one point in time I changed the 'attribute' property to 'name' and my application stopped working. It s

Re: struts-config.xml question

2002-10-01 Thread Emmanuel Boudrant
Hi, 'name' is the name of the form used by the action, this name must exist in form-beans declaration. 'attribute' is the key where the form instance will be stored in your session/request scope for the action. by default attribute == name, but if you want, by setting 'attribute', you can cha

RE: struts-config.xml question

2002-10-01 Thread Victor CHEVALIER
PROTECTED] Objet : struts-config.xml question I'm looking at the struts-example and its struts-config.xml file. In the section for editRegistration, 'attribute' is set to 'registrationForm'. As I understand it (from the DTD), attribute is the name of the scoped (sessio

struts-config.xml question

2002-10-01 Thread Kevin HaleBoyes
I'm looking at the struts-example and its struts-config.xml file. In the section for editRegistration, 'attribute' is set to 'registrationForm'. As I understand it (from the DTD), attribute is the name of the scoped (session or request) attribute that is used to access the ActionForm bean. Now

Re: Need assistance with application flow (struts-config.xml question)

2002-09-17 Thread John Owen
Please ignore this, I didn't mean for this to be sent just yet. ;) - Original Message - From: "John Owen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 17, 2002 10:29 AM Subject: Need assistance with application flow (struts-config.xml

Need assistance with application flow (struts-config.xml question)

2002-09-17 Thread John Owen
I have a jsp that uses to call an action that needs no input (and hence no form) from a user, e.g. : . I then populate a resultant form within the action class and forward (on success) to this form. Should I set up my struts-config.xml like this : OR like this :

RE: struts-config.xml question

2001-12-06 Thread Alexander Jesse
ROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 10:59 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: struts-config.xml question ahh, yes. i have that too: action /wizard/* where 'action' is the name of org.apache.struts.action.ActionServl

RE: struts-config.xml question

2001-12-06 Thread Edward Q. Bridges
-e-- On Thu, 6 Dec 2001 09:41:49 -, Jon.Ridgway wrote: >Hi Edward > >You will need to add a mapping into your web.xml. > >Jon. > >-Original Message- >From: Edward Q. Bridges [mailto:[EMAIL PROTECTED]] >Sent: 06 December 2001 09:36 >To: [EMAIL PROTECTED] &g

RE: struts-config.xml question

2001-12-06 Thread Jon.Ridgway
Hi Edward You will need to add a mapping into your web.xml. Jon. -Original Message- From: Edward Q. Bridges [mailto:[EMAIL PROTECTED]] Sent: 06 December 2001 09:36 To: [EMAIL PROTECTED] Subject: struts-config.xml question given the below struts config which is part of a war file

struts-config.xml question

2001-12-06 Thread Edward Q. Bridges
given the below struts config which is part of a war file named 'wizard.war', i am trying to have a url that appears in the client web-browser address bar of the sort: http://localhost:8080/wizard/logon but the only thing i can get to work is: http://localhost:8080/wizard/logon.jsp how can i ac

Re: struts-config.xml question

2001-06-08 Thread Ted Husted
Now that you mention it, the FAQ-o-Matic is up again. < http://jakarta.apache.org:8080/jyve-faq/Turbine/screen/DisplayTopics/action/SetAll/project_id/2/faq_id/36 > Bill Clinton wrote: > Also, if anyone knows of any good documentation links, I am open to > suggestions. Other than the docs on th

RE: struts-config.xml question

2001-06-08 Thread Allamsetty, Venkata
, 2001 3:43 PM To: [EMAIL PROTECTED] Subject: struts-config.xml question Hello, I just am starting out with struts, and I have a question. I started with this syntax in my test jsp: and this in my struts-config.xml: but I was getting this error: javax.servlet.jsp.JspException: Must

Re: struts-config.xml question

2001-06-08 Thread Oleg V Alexeev
Hello Bill, Try to use not and restart servlet container (Tomcat, Resin, etc.) after strut-config.xml changing (or call http://host:port/path/admin/reload) Friday, June 08, 2001, 11:43:06 PM, you wrote: BC> Hello, BC> I just am starting out with struts, and I have a questi

Re: struts-config.xml question

2001-06-08 Thread Ted Husted
In general, you shouldn't need to specify the form name or type in the JSP at all. The form tag will lookup that up from the struts-config.xml, according to where you are submitting the form (action path = action path). should be all you need. -- Ted Husted, Husted dot Com,

struts-config.xml question

2001-06-08 Thread Bill Clinton
Hello, I just am starting out with struts, and I have a question. I started with this syntax in my test jsp: and this in my struts-config.xml: but I was getting this error: javax.servlet.jsp.JspException: Must specify type attribute if name is specified #