Well, I got it to work, but I don't care for it. I'd like to know what's
wrong if someone knows. Here's the jsp below:
<%
java.net.URL url = new
java.net.URL(request.getRequestURL().append("/PageWorks/servlet/PageMill").toString());
java.net.URLConnection connect = url.openConnection();
connect.connect();
java.io.BufferedReader in = new java.io.BufferedReader(new
java.io.InputStreamReader(connect.getInputStream()));
String html;
while((html = in.readLine()) != null){
out.write(html);
}
%>
This works, but it's not very pretty of a method. Why doesn't the
<jsp:forward/> work? This way it doesn't cache the page forever on the
server. If I just us jsp:forward it caches the page and never update it's
information from the servlet.
Thank You,
Justin A. Stanczak
Web Manager
Shake Learning Resource Center
Vincennes University
(812)888-5813