DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13346>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13346 Tomcat thorws NullPointerException [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From [EMAIL PROTECTED] 2002-10-22 06:31 ------- Close, but not perfect. The offending method in AxisServletBase: private static void storeEngine(ServletContext context, AxisServer engine) { if (engine == null) { context.removeAttribute(ATTR_AXIS_ENGINE); } else { context.setAttribute(ATTR_AXIS_ENGINE, engine); } context.setAttribute(ATTR_AXIS_ENGINE, engine); } If you remove the last statement, we're all happy.