I am running the "same' jsp page within the exact "same" environments (JRun 2.3.3, NT Server) but with different results. The difference manifests itself with one page working and the other causing the error in jseweb/logs/error.log, "can't forward : getJspWriter() already open" (or some such). After exhausting many possibilities at our end, I came upon the following difference in the two XML files generated by JRun (appearing below). The top of each file appears below, in which you will note two differences. In the non-working version the line: <jsp:directive.dependency resource="/qs_web/admin/displayadminfolder.jsp" /> appears. Additionally, within the CDATA "elements" the symbolic \r\n appear for CR/NL that do not appear in working version. The net of the latter point is that out.println()s are generated in the translated java code accounting for the message about the getJspWriter being open. The "only" difference between my two Jrun installations is that one is an Aug 99 build while the other (non-working version) is a Nov 99 build. I have checked "all" config parameters/property files and could not discern a difference. Could some Allaire person give me a clue as to what is going on? For some reason or another, I am getting a different translation from JRun and I am baffled. // Working version <?xml version="1.0" ?> - <jsp:root xmlns:jsp="http://java.sun.com/products/jsp/dtd/jsp_1_0.dtd" package="jsp.qs_web.admin" name="displayadminfolder"> <jsp:directive.page import="java.net.URLEncoder, java.util.ArrayList, java.util.Hashtable, java.util.List, com.quickstream.doccentral.apix.admin.*, com.quickstream.doccentral.apix.admin.util.AdminJSPNavigation, com.quickstream.doccentral.apix.util.DocNavigation, com.quickstream.util.*" /> - <![CDATA[ ]]> <jsp:directive.page import="java.util.Locale,java.util.ResourceBundle" /> - <![CDATA[ ]]> // ******** End of working version excerpt // NON-working version <?xml version="1.0" ?> - <jsp:root xmlns:jsp="http://java.sun.com/products/jsp/dtd/jsp_1_0.dtd" package="jsp.qs_web.admin" name="displayadminfolder"> <jsp:directive.dependency resource="/qs_web/admin/displayadminfolder.jsp" /> <jsp:directive.page import="java.net.URLEncoder, java.util.ArrayList, java.util.Hashtable, java.util.List, com.quickstream.doccentral.apix.admin.*, com.quickstream.doccentral.apix.admin.util.AdminJSPNavigation, com.quickstream.doccentral.apix.util.DocNavigation, com.quickstream.util.*" /> - <![CDATA[ \r\n\r\n\r\n\r\n\r\n\r\n\r\n ]]> <jsp:directive.page import="java.util.Locale,java.util.ResourceBundle" /> - <![CDATA[ \r\n ]]> ------------------------------------------------------------------------------ Archives: http://www.egroups.com/group/jrun-interest/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
