RE: Probs migrating custom ActionMapping from 1.0.2 to 1.1

2003-08-25 Thread James Childers
Unfortunately that didn't work. I'm still getting the ClassCastException when trying to cast from ActionConfig to SecureActionMapping. Here's something very strange: If I do a log.debug(modCfg.getActionMappingClass()) guess what it returns? pkg.SecureActionMapping And yet it still bombs with

Re: Probs migrating custom ActionMapping from 1.0.2 to 1.1

2003-08-25 Thread Kris Schneider
For 1.1, I believe you'd use: ... The "mapping" init-parameter is deprecated in 1.1. You could also customize the actions on an individual basis with: ... Quoting James Childers <[EMAIL PROTECTED]>: > Ladies and gents, > > Having an issue with migrating our application over from

Probs migrating custom ActionMapping from 1.0.2 to 1.1

2003-08-25 Thread James Childers
Ladies and gents, Having an issue with migrating our application over from 1.0.2 to 1.1. Specifically, we have a problem in the following line from our ActionServlet: ModuleConfig modCfg = RequestUtils.getModuleConfig(request, getServletContext()); SecureActionMapping secAMapping = (SecureAction