Muralidhar Y wrote:
        <s:form action="executePoPSearch.action" >
        

It's an (annoying) warning caused by the line above.
It means it searched for an action in the configuration called "executePoPSearch.action" but couldn't find it, so it's going to use the literal value "executePoPSearch.action" instead.

The form tag includes code to generate an appropriate URL.
First it tries to see if you're referencing an action by name, and if so, it asks the ActionMapper to generate a URL for it.
If it wasn't found, it assumes you're specifying the URL directly.

Make it go away using:

<s:form action="executePoPSearch" >



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

Reply via email to