JSP That Shows Current CLASSPATH
Here is a simple JSP that shows what the current CLASSPATH is for the Jrun server that your are running under:
<%@ page import="java.util.*" %>
This is your current classpath: <BR> <BR>
<%
String classpath = System.getProperty("java.class.path");
StringTokenizer st = new StringTokenizer(classpath,":");
while (st.hasMoreTokens()){
out.println(st.nextToken() + "<BR>");
}
%>