Name: Anonymous 2011-05-14 7:09
I don't get it.
My XML file is perfectly fine.
My JSP file is painfully simplistic.
So why is it giving me shit about a premature end of file when I try to do this?
My XML file is perfectly fine.
My JSP file is painfully simplistic.
So why is it giving me shit about a premature end of file when I try to do this?
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
<html>
<head>
<title>cust_xml</title>
</head>
<body>
<h1>Customer Information</h1>
<c:import var="xmlFile" url="cust.xml" />
<x:parse var="myDoc" xml="${xmlFile}" />