Re: 500 lines of jsp is 10k lines of java

2001-03-19 Thread tmalvos
I experienced the same problem with Weblogic 5.1 sp8. To fix it, I increased the initial heap and maximum heap size arguments for the Java VM in the Weblogic server startup BAT file to: -ms256m -mx256m This may be overkill for your situation, but it should work.

RE: "Illegal target of jump or branch" Error

2001-02-07 Thread TMalvos
Thank you for your explanations. As a result I changed the -ms and -mx options for the Java VM to request 256 MB of heap memory...and it worked.

HELP: "Illegal target of jump or branch" Error

2001-02-06 Thread TMalvos
I receive the following error when accessing my JSP in WebLogic 5.1 (sp8): Tue Feb 06 10:56:07 EST 2001: Servlet failed with Exception java.lang.VerifyError: (class: jsp_servlet/_test, method: _jspService signature: (Ljavax/servlet/htt p/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse

Help Please: JSP Exception

2001-02-01 Thread TMalvos
When accessing one of my JSP's I receive the following runtime exception: javax.servlet.ServletException: (class: _0002fTest_0002ejspTest_jsp_0, method: _jspService signature: (Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V) Illegal target of jump or branch

Help Please: Resource not found

2001-01-31 Thread TMalvos
When trying to call a JSP I receive the following message from Tomcat: javax.servlet.ServletException: Cannot find bean under name org.apache.struts.taglib.html.BEAN at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:459) I checked the STRUTS distri

Tag Library Definition Inheritence

2001-01-31 Thread TMalvos
Just as functionality can be inherited as you subclass the tag handlers, is it also possible to inherit the corresponding tag interface definitions in the library file? The TLD files are growing unnecessarily large. Thanks.