I just did the same thing, but had no problems. Here
is what I did:

public class ExtendedActionServlet extends
org.apache.struts.action.ActionServlet
{
    
    /** Initializes the servlet.
     */
    public void init(ServletConfig config) throws
ServletException
    {        
        super.init(config);
       
App224DataManager.setContextBeans(config.getServletContext());
    }
    
    
}


Make sure you call super.init(config) , I bet that is
your problem.

-Kevin

--- Jim Collins <[EMAIL PROTECTED]>
wrote:
> Hi,
> 
> I have just modified an  application where I now
> subclass ActionServlet. The
> problem is my JSP's that use resources now throws an
> exception about not
> being able to find the key. Are there any issues
> with subclassing
> ActionServlet that I should be aware of.
> 
> Thanks
> 
> Jim.
> 
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 


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

Reply via email to