Re: No input attribute for mapping path

2003-11-14 Thread amind
you could set validation="false"

> The likely reason is that you are using validation, but you havn't
> specified
> the page to go to if validation fails. You should specify this with
> "input"
> attribute of the action that needs validation.
>
> Caro
>
>
> -
> 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: No input attribute for mapping path

2003-11-14 Thread Caroline Lauferon
The likely reason is that you are using validation, but you havn't specified
the page to go to if validation fails. You should specify this with "input"
attribute of the action that needs validation.

Caro


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



No input attribute for mapping path

2003-11-13 Thread neso m

I am running struts in Webpshere 5.0 and I got this error:

[11/14/03 0:57:40:266 EST] 391b9f1f RequestProces I 
org.apache.struts.action.RequestProcessor Processing a 'POST' for path '/login'

[11/14/03 0:57:40:312 EST] 391b9f1f WebGroup E SRVE0026E: [Servlet Error]-[action]: 
com.ibm.ws.webcontainer.webapp.WebAppErrorReport: No input attribute for mapping path 
/login

at 
com.ibm.ws.webcontainer.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:150)

at org.apache.struts.action.RequestProcessor.processValidate(RequestProcessor.java:915)

at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:247)

at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1292)

at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

at 
com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)

at 
com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)

at 
com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)

at 
com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)

at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:258)

at 
com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)

at 
com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)

at 
com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:872)

at 
com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:491)

at 
com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:173)

at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)

at 
com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:199)

at 
com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)

at 
com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)

at 
com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:331)

at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)

at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:432)

at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:343)

at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:592)



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

RE: "No input attribute for mapping path" - what does this mean?

2003-05-29 Thread Catherine Morgan

Thanks for your help with this. I found the problem eventually.
In my action mappings I had got validation="true" for the action that I
wanted to be validated, but I hadn't included validation="false" for the
others.

Catharine

> among other things, it is the page to fall back on if 
> validation fails.
> 
> so if you enter your form data correctly, you will go to the 
> appropriate
> page, but if you make a mistake, it looks at 'input' for where to go,
> hence you may have seen it sometimes and not others?
> 
> In my case below, it is a name from my tiles-config.xml file...
> 
> just add it to your action mapping:
> 
>type="torch.controller.SearchBySequenceAction"
>  name="SearchBySequenceForm"
>  scope="request"
>  validate="true"
>  input="order_entry.SearchBySequence">
> ...
>  
> 
> -jeff
> 

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



Re: "No input attribute for mapping path" - what does this mean?

2003-05-29 Thread Jeff Kyser
among other things, it is the page to fall back on if validation fails.

so if you enter your form data correctly, you will go to the appropriate
page, but if you make a mistake, it looks at 'input' for where to go,
hence you may have seen it sometimes and not others?
In my case below, it is a name from my tiles-config.xml file...

just add it to your action mapping:


...

-jeff

On Wednesday, May 28, 2003, at 11:41  AM, Catherine Morgan wrote:

Sometimes when I hit a submit button to forward to another page I get 
an
HTTP 500 error with the following error message:
No input attribute for mapping path ...

The path in the error message is configured in struts-config, and I'm 
sure
the struts-config is OK because sometimes it does work.
I can't work out what is causing this error. I have done a web search 
for
the text but couldn't find an explanation of what it means.
Can anyone tell me what this error message means so I can work out 
what is
causing it?

Thanks,
Catharine
-
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]


"No input attribute for mapping path" - what does this mean?

2003-05-29 Thread Catherine Morgan
Sometimes when I hit a submit button to forward to another page I get an
HTTP 500 error with the following error message:
No input attribute for mapping path ...

The path in the error message is configured in struts-config, and I'm sure
the struts-config is OK because sometimes it does work.
I can't work out what is causing this error. I have done a web search for
the text but couldn't find an explanation of what it means.
Can anyone tell me what this error message means so I can work out what is
causing it?

Thanks,
Catharine

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