Hello”” My project has been built to use it in Tomcat 5.0, and it really works... I have no problem when i execute it in tomcat. But now, i want to try it in weblogic 7.0 and i have some compilation problems.
JSP's in this projects are really one JSP, because i have several include's controlled by parameters. I mean that i've one JSP, and if user wants to view something, an include must works... So, in weblogic, compilation of this big JSP (that contents these others) reports this problem: --------------- C:\bea\user_projects\dominio70\server70\.wlnotdelete\aunabill_aunabill_12720744\jsp_servlet\_jsp\__principal.java:10641: code too large for try statement probably occurred due to an error in /jsp/analisis/consultas/verDetalleConsumo.jsp line 93: type="es.indra.aunabill.vo.analisis.consultas.ResultadoDetalleConsumoVO" indexId="iterador" scope="request"> ---------------- and line is... ---------------------- <logic:iterate id="resultadosDetalleConsumo" name='<%=Constantes.RESULTADOS_DETALLE_CONSUMO%>' type="es.indra.aunabill.vo.analisis.consultas.ResultadoDetalleConsumoVO" indexId="iterador" scope="request"> <bean:define id="origen" name="resultadosDetalleConsumo" property="origen" /> <bean:define id="destino" name="resultadosDetalleConsumo" property="destino" /> // MORE BEAN DEFINES AND A HTML TABLE TO SHOW RESULTS.... </logic:iterate> ------------------------ I can't view what the problem is....