Re: Causing custom ActionMapping attributes to be read

2005-10-28 Thread Laurie Harper
You need to make sure your getter/setter follow the JavaBean Specification conventions; specifically, the getter and setter must have the same type. You have a boolean getter and a String setter, which is not allowed by the spec. Change one of them so they match and you should be OK. Either typ

Causing custom ActionMapping attributes to be read

2005-10-28 Thread Dave
I'm using Struts 1.1. I have an ActionMapping class: public class My_ActionMapping extends SecureActionConfig { protected boolean secured = false; public boolean getLoginSecured() { System.out.println("Getting Login Secured"); return secured; } public void setLoginSecured (String S