--- Christoph Kepper <[EMAIL PROTECTED]> wrote:
> <action name="artikel" method="input" class="action.ArtikelAction">
>    <result name="success" type="redirectAction">admin</result>
>    <result name="input">/WEB-INF/jsp/artikelForm.jsp</result>
> </action>
> 
> My action class (ArtikelAction.java) contains the property "private 
> Integer artnr" with the appropriate Getters and Setters.

As a sanity check, what are your getter and setters named?

> I tried to get some debug information from the params interceptor and 
> put the following code into my struts.xml (inside the action):
> <interceptor-ref name="params">
>    <param name="logEnabled">true</param>
>    <param name="logLevel">DEBUG</param>
> </interceptor-ref>

Nate that when you use an interceptor-ref element inside an action
configuration then *only* that interceptor-ref will be configured for that
action: this means that in this case if this is the only interceptor-ref
inside the action element then *only* the "params" interceptor will be run
for that action. This is probably not what you want.

Dave


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

Reply via email to