>So, in this, Struts is looking at an instance of
>"com.participate.util.client.struts.ApplicationActionMapping" for a
>method called "setPublic(...)"
Right. This class has had a setPublic(boolean) for a long time and it's worked correctly in struts 1.0.
Only when I updated to struts 1.1 today did the problem arise.
It looks like struts as of 1.1 does not use the classname attribute in the action element as it did in 1.0:
<action path="/profile/publicprofile"
type="com.participate.pe.profile.client.actions.PublicProfileInit"
name="publicProfileForm" scope="request"
className="com.participate.util.client.struts.ApplicationActionMapping">
<set-property property="public" value="true"/>
<forward name="continue" path="/profile/include/publicprofile.jsp" />
</action>
[2003-09-11 09:24:45,031] [ERROR] org.apache.commons.digester.Digester (Digester.java:1275) - Begin event threw exception
java.lang.NoSuchMethodException: Bean has no property named public at org.apache.commons.digester.SetPropertyRule.begin(SetPropertyRule.java:192) at org.apache.commons.digester.Rule.begin(Rule.java:200)
Thanks for the comments on the Digester and ConvertUtils. I'll check them out.
bill
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

