RE: Use of Java Classes in .JSP fails under Tomcat 3.2

2002-01-16 Thread Jerry Jalenak
Thanks to everyone for the quick response. And yes, I am new to Java, so some of the 'basics' I'm still learning. Unfortunately, my boss expects me to be the expert in Java, JSP, Tomcat, etc. NOW. Thanks again to everyone. Jerry This transmission (and any information attached to it) may be co

Re: Use of Java Classes in .JSP fails under Tomcat 3.2

2002-01-16 Thread Jason Koeninger
On Wed, 16 Jan 2002 15:13:58 -0600, Jerry Jalenak wrote: >When I attempt to access methods defined in Java from a .JSP, I am receiving >a message that the method is not being found. For example, I have been >testing with the following .JSP: > ><%@page import="java.util.*, java.lang.*"%> ><% >

RE: Use of Java Classes in .JSP fails under Tomcat 3.2

2002-01-16 Thread Michael Wentzel
> When I attempt to access methods defined in Java from a .JSP, > I am receiving > a message that the method is not being found. For example, I > have been > testing with the following .JSP: > > <%@page import="java.util.*, java.lang.*"%> > <% > // Test > > String myString

Re: Use of Java Classes in .JSP fails under Tomcat 3.2

2002-01-16 Thread jeff . guttadauro
<[EMAIL PROTECTED]> cc: 01/16/02 03:13 Subject: Use of Java Classes in .JSP fails under Tom

Use of Java Classes in .JSP fails under Tomcat 3.2

2002-01-16 Thread Jerry Jalenak
Hi All, When I attempt to access methods defined in Java from a .JSP, I am receiving a message that the method is not being found. For example, I have been testing with the following .JSP: <%@page import="java.util.*, java.lang.*"%> <% // Test String myString = "100" ;