First off, many thanks you folks that have helped me so much on my
previous emails/problems.

I have a jsp page that I refactored out of my application
that is found on many of the pages. It does a data setup for display.
My problem is with a serveletexception showing premature end of file
without any other clues. I added the c:out at the bottom and that fixes
one page that calls this but breaks another with the same message.
If I take out the c:out the page that worked gets the error and the
pages that failed is then working fine. 

using j2sdk 1.4.2_03_b2
tomcat nightly build 20040203

TIA, Jason



<%@ page language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %>
<%@ taglib uri="/WEB-INF/tld/taglibs-io.tld" prefix="io" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"; %>

<c:import url="/WEB-INF/pages/geteurl.jsp" />
<c:set var="ereply" scope="request" >
        <io:http url="${requestScope.eurl}" action="POST" >
                <io:body><c:out value="${requestScope.erequest}"
escapeXml="false" /></io:body>
        </io:http>
</c:set>


<x:parse xml="${requestScope.ereply}" var="ereplydom" scope="request" />
<c:out value="${requestScope.ereply}" />

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to