Sorry folks, this isn't a WW issue, but I need help.
I am trying to run Webwork examples (unpacked) on Weblogic. All JSP pages fail compilation, upon request, due to duplicated code section i.e (exprformtestfile.jsp -> _exprformtestfile.java):
 
...
 
 private static void _releaseTags(javax.servlet.jsp.tagext.Tag t) {
        while (t != null) {
            javax.servlet.jsp.tagext.Tag tmp = t;
            t = t.getParent();
            try { tmp.release(); } catch (Exception ignore) {}
        }
    }
 
 private static void _releaseTags(javax.servlet.jsp.tagext.Tag t) {
        while (t != null) {
            javax.servlet.jsp.tagext.Tag tmp = t;
            t = t.getParent();
            try { tmp.release(); } catch (Exception ignore) {}
        }
    }
 
...
 
Any ideas?
TIA
 
 
 
 
 

Reply via email to