Community
Participate
Working Groups
When multiple WebXmlUpdater methods are called sequentially, only the first method will succeed. For example (where "updater" is an instance of WebXmlUpdater), this succeeds: updater.addServlet("Foo", "org.foo.Foo", "1"); but this successfully adds only the servlet and not the context parameter: updater.addServlet("Foo", "org.foo.Foo", "1"); updater.addContextParam("Bar", "Hmm", "Stuff"); This causes two failing tests in the core tests suite: - testAddContextParam, and - testAddServletMapping
Please review if this is caused by the fix for bug 323185
(In reply to comment #1) > Please review if this is caused by the fix for bug 323185 If I reverse the patch for bug 323185, things work correctly.
Hi the dependent bug was fixed. I have run your tests and they passed. Hopefully you can close the issue now.
Fix for blocking bug has corrected the problem.