Re: Custom ActionMapping subclass causing servlet not available

2005-10-25 Thread Dave
Niall Pemberton blueyonder.co.uk> writes: > > How about making your custom ActionMapping a public class? > > Niall > BTW, the initial cap of the class name was changed to match the file name, and the struts-config line was changed to correspond:

Re: Custom ActionMapping subclass causing servlet not available

2005-10-25 Thread Dave
Niall Pemberton blueyonder.co.uk> writes: > > How about making your custom ActionMapping a public class? > OK, can you tell that I'm an old C++ programmer :) Unfortunatly, while I had high hopes for that change even after I changed the declaration to: public class DispatchByURLAction extend

Re: Custom ActionMapping subclass causing servlet not available

2005-10-25 Thread Dave
BTW, SecurePageAction extends Action. (Don't know if that makes a difference). - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Custom ActionMapping subclass causing servlet not available

2005-10-25 Thread Niall Pemberton
How about making your custom ActionMapping a public class? Niall - Original Message - From: "Dave" <[EMAIL PROTECTED]> Sent: Tuesday, October 25, 2005 4:20 PM > In my struts-config I have the following action: > >path="/MyAccount" > type="com.eri.web.struts.actions.SecurePa

Custom ActionMapping subclass causing servlet not available

2005-10-25 Thread Dave
In my struts-config I have the following action: My class looks like: class dispatchByURLAction extends ActionMapping { protected String secured = ""; public String getSecured() { return secured; } public void setSecured (String Secured) { secured = Secured; } }