RE: What does this erroe mean

2003-03-03 Thread Jarnot Voytek Contr AU HQ/SC
we'll need to see at least the relevant part of your struts-config.xml.
Also, what's throwing the error?

--
Voytek Jarnot
Quidquid latine dictum sit, altum viditur.


 -Original Message-
 From: Sloan Seaman [mailto:[EMAIL PROTECTED]
 Sent: Monday, March 03, 2003 8:27 AM
 To: Struts Users Mailing List
 Subject: What does this erroe mean
 
 
 I keep getting:
 no input attribute found for path ...
 
 Everything looks good in my config files...
 
 what causes this error?
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: What does this erroe mean

2003-03-03 Thread James Mitchell
It means you did not specify an input attribute for the action with path
'...'



--
James Mitchell
Web Developer/Struts Evangelist
http://jakarta.apache.org/struts/

People demand freedom of speech to make up for the freedom of thought
which they avoid.
- Soren Aabye Kierkegaard (1813-1855)




 -Original Message-
 From: Sloan Seaman [mailto:[EMAIL PROTECTED] 
 Sent: Monday, March 03, 2003 9:27 AM
 To: Struts Users Mailing List
 Subject: What does this erroe mean
 
 
 I keep getting:
 no input attribute found for path ...
 
 Everything looks good in my config files...
 
 what causes this error?
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: What does this erroe mean

2003-03-03 Thread Nicolas De Loof
I think you have set validate to true for this path, and not setted
input attribute, so struts is not able to forward to input JSP when
validation errors occurs.

Nico.


 I keep getting:
 no input attribute found for path ...

 Everything looks good in my config files...

 what causes this error?



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: What does this erroe mean

2003-03-03 Thread Sloan Seaman
But what is an input attribute?

I've got a form with tons of input fields as well as a form-bean specified
and an action for the path specified.

Everything looks fine.. that is why I can't figure out what is wrong.

What type of mis-configuraiton usually causes this issue?

--
Sloan

- Original Message -
From: James Mitchell [EMAIL PROTECTED]
To: 'Struts Users Mailing List' [EMAIL PROTECTED]
Sent: Monday, March 03, 2003 9:29 AM
Subject: RE: What does this erroe mean


 It means you did not specify an input attribute for the action with path
 '...'



 --
 James Mitchell
 Web Developer/Struts Evangelist
 http://jakarta.apache.org/struts/

 People demand freedom of speech to make up for the freedom of thought
 which they avoid.
 - Soren Aabye Kierkegaard (1813-1855)




  -Original Message-
  From: Sloan Seaman [mailto:[EMAIL PROTECTED]
  Sent: Monday, March 03, 2003 9:27 AM
  To: Struts Users Mailing List
  Subject: What does this erroe mean
 
 
  I keep getting:
  no input attribute found for path ...
 
  Everything looks good in my config files...
 
  what causes this error?
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: What does this erroe mean

2003-03-03 Thread Nicolas De Loof
in struts-config.xml, input attribute of a path element defines the JSP
(or ohter ressource) that can be used to display errors and let the user
update it's submited (and erronous) datas

In general use, input value is the JSP that submitted to this path.

Nico.

- Original Message -
From: Sloan Seaman [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Monday, March 03, 2003 4:42 PM
Subject: Re: What does this erroe mean


 But what is an input attribute?

 I've got a form with tons of input fields as well as a form-bean specified
 and an action for the path specified.

 Everything looks fine.. that is why I can't figure out what is wrong.

 What type of mis-configuraiton usually causes this issue?

 --
 Sloan

 - Original Message -
 From: James Mitchell [EMAIL PROTECTED]
 To: 'Struts Users Mailing List' [EMAIL PROTECTED]
 Sent: Monday, March 03, 2003 9:29 AM
 Subject: RE: What does this erroe mean


  It means you did not specify an input attribute for the action with path
  '...'
 
 
 
  --
  James Mitchell
  Web Developer/Struts Evangelist
  http://jakarta.apache.org/struts/
 
  People demand freedom of speech to make up for the freedom of thought
  which they avoid.
  - Soren Aabye Kierkegaard (1813-1855)
 
 
 
 
   -Original Message-
   From: Sloan Seaman [mailto:[EMAIL PROTECTED]
   Sent: Monday, March 03, 2003 9:27 AM
   To: Struts Users Mailing List
   Subject: What does this erroe mean
  
  
   I keep getting:
   no input attribute found for path ...
  
   Everything looks good in my config files...
  
   what causes this error?
  
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: What does this erroe mean

2003-03-03 Thread Sloan Seaman
From further debugging I found that if I use
pantryLoadingIntroChai

as the name of my form-bean and also as the attribute name in my action tag
it works fine.

If I use:
pantryLoadingIntroChain

it does not work.

The name is somehow clashing with another defined name of the same type
somewhere but I can't find it anywhere else...(that is my theory at least)

I'm just going to use a different name for now...

Thanks for the help

--
Sloan


- Original Message -
From: Jarnot Voytek Contr AU HQ/SC [EMAIL PROTECTED]
To: 'Struts Users Mailing List' [EMAIL PROTECTED]
Sent: Monday, March 03, 2003 9:25 AM
Subject: RE: What does this erroe mean


 we'll need to see at least the relevant part of your struts-config.xml.
 Also, what's throwing the error?

 --
 Voytek Jarnot
 Quidquid latine dictum sit, altum viditur.


  -Original Message-
  From: Sloan Seaman [mailto:[EMAIL PROTECTED]
  Sent: Monday, March 03, 2003 8:27 AM
  To: Struts Users Mailing List
  Subject: What does this erroe mean
 
 
  I keep getting:
  no input attribute found for path ...
 
  Everything looks good in my config files...
 
  what causes this error?
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]