  | Mailing List | | Home | | Forum Home | | JBoss - Java Application Server | | Struts - A MVC web framework | | Tomcat - JSP/Servlet container | | iText - An open source PDF Java Library | | JDOM - JDOM XML Parser | | J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition | | J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog | | Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology | | JSP - A mailing list about Java Server Pages specification and reference | |
Struts & Hibernate
|
|
|
  | | | Tomcat not recognizing JDB drivers - 4.1.29!-Please Help | Tomcat not recognizing JDB drivers - 4.1.29!-Please Help 2003-12-10 - By GuptaD@(protected)
Back Hi everybody, I'm really new to Tomact and I'm facing this problem.
I have put the classes in the package and Tomcat is now able to recognize that. Now It is not recognizing the Oracle drivers which I have them in C:\Jdbcdrivers as classes12.zip and added in CLASSPATH but When I call it from jsp page , it is giving me error as :-
java.sql.SQLException : No suitable driver
Could you please point me in the right direction as where it is expecting thoose drivers.
-- ----My Jsp code is-- --
<%@ page import="java.sql.*" %> <%@ page session="true" %> <%@ page language="java" import="pkgclass.*" %> <jsp:useBean id="PV1" scope="page" class="pkgclass.UserLogin"/>
<%-- Statements to stop caching at client site --%> <% response.setHeader("Cache-Control","no-store"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP 1.0 response.setDateHeader ("Expires", 0); //prevents caching at the proxy %>
<% PV1.setSID("SDGT"); PV1.setHost("dpwdev02") ; PV1.setSID("drpd"); PV1.setUID("crdbweb") ; PV1.setPWD("crdbweb"); String sres = PV1.amplogin(); out.println("Msgback : "+sres);
%>
<html> <Head><Title>Boots First page</title></head>
<html> <body bgcolor="#EBE4DF"> <Table> <TH>Broadband Online Order Tracking system </TH>
</Table>
</body> </html> -- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --- I'm attaching my class code with this mail but I think the problem is that Tomcat can't recognize the drivers
Thanks in advance for your reply..
Regards,
Divya
-- --Original Message-- -- From: jakarta [ mailto:jakarta@(protected) <mailto:jakarta@(protected)> ] Sent: 09 December 2003 15:04 To: 'Tomcat Users List' Subject: RE: Tomcat error while using a class with JSP!
I believe that you have to package your class ie boots.PVDatabase as I recall unpackaged classes are not valid John
-- --Original Message-- -- From: GuptaD@(protected) [ mailto:GuptaD@(protected) <mailto:GuptaD@(protected)> ]
Sent: Tuesday, December 09, 2003 9:42 AM To: tomcat-user@(protected) Subject: Tomcat error while using a class with JSP!
Hi All,
I am new to Tomcat so I would really appreciate if somebody could help me in this.
I have Tomcat 4.1.29 installed on my windows 2000 machine. At the same level as examples is in Tomcat path, I've created a directory called boots(this is my application directory.) and have a index.jsp under boots and a class called PVDatabase.class under C:\Program Files\Apache Group\Tomcat 4.1\webapps\boots\WEB-INF\classes directory where C:\Program Files\Apache Group\Tomcat 4.1 is my CATALINA_HOME variable.
I have modified server.xml to include the context boots there. When I try to call this class from my index.jsp it gives me the following error.
org.apache.jasper.JasperException : Unable to compile class for JSP
An error occurred at line: 2 in the jsp file: /index.jsp
Generated servlet error: [javac] Compiling 1 source file
C:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\boots\index_jsp.java:44: cannot resolve symbol symbol : class PVDatabase location: class org.apache.jsp.index_jsp PVDatabase PV1 = null; ^
An error occurred at line: 2 in the jsp file: /index.jsp
Generated servlet error: C:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\boots\index_jsp.java:46: cannot resolve symbol symbol : class PVDatabase location: class org.apache.jsp.index_jsp PV1 = (PVDatabase) pageContext.getAttribute("PV1", PageContext.PAGE_SCOPE); ^
An error occurred at line: 2 in the jsp file: /index.jsp
Generated servlet error: C:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\boots\index_jsp.java:49: cannot resolve symbol symbol : class PVDatabase location: class org.apache.jsp.index_jsp PV1 = (PVDatabase) java.beans.Beans (this.getClass().getClassLoader(), "PVDatabase"); ^ 3 errors
at org.apache.jasper.compiler.DefaultErrorHandler (DefaultErrorHa ndler.java:130) at org.apache.jasper.compiler.ErrorDispatcher (ErrorDispatcher.ja va:293) at org.apache.jasper.compiler.Compiler (Compiler.java:353) at org.apache.jasper.compiler.Compiler (Compiler.java:370) at org.apache.jasper.JspCompilationContext (JspCompilationContext.ja va:473) at org.apache.jasper.servlet.JspServletWrapper (JspServletWrapper.ja va:190) at org.apache.jasper.servlet.JspServlet (JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet (JspServlet.java:241) at javax.servlet.http.HttpServlet (HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain (Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain (ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve (StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline (StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase (ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve (StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline (StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase (ContainerBase.java:995) at org.apache.catalina.core.StandardContext (StandardContext.java:241 7) at org.apache.catalina.core.StandardHostValve (StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve (ErrorReportValve.java :172) at org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline (StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase (ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve (StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline (StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase (ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter (CoyoteAdapter.java:193) at org.apache.coyote.http11.Http11Processor (Http11Processor.java:78 1) at org.apache.coyote.http11.Http11Protocol $Http11ConnectionHandler.processC onnection(Http11Protocol.java:549) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:58 9) at org.apache.tomcat.util.threads.ThreadPool $ControlRunnable.run(ThreadPool .java:666) at java.lang.Thread (Thread.java:536)
I am not really sure as what am I missing here in configuration. I'm sending my server.xml and index.jsp with this mail..
Looking forward to hear from you very soon.
Thanks & Regards,
Divya <<server.xml>> <<index.jsp>>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <TITLE>RE: Tomcat error while using a class with JSP!</TITLE>
<META content="MSHTML 5.50.4807.2300" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=786274810-10122003><FONT face=Arial color=#008080 size=2>Hi everybody,</FONT></SPAN></DIV> <DIV><SPAN class=786274810-10122003><FONT face=Arial color=#008080 size=2> </FONT></SPAN></DIV> <DIV><SPAN class=786274810-10122003><FONT face=Arial color=#008080 size=2> I'm really new to Tomact and I'm facing this problem. </FONT></SPAN></DIV><BR> <P><FONT size=2> I have put the classes in the package and Tomcat is now able to recognize that. Now It is not recognizing the Oracle drivers which I have them in C:\Jdbcdrivers as classes12.zip and added in CLASSPATH but When I call it from jsp page , it is giving me error as :- </FONT></P> <P> <FONT size=2>java.sql.SQLException : No suitable driver </FONT></P> <P><FONT size=2>Could you please point me in the right direction as where it is expecting thoose drivers.</FONT> </P> <P><FONT size=2> -- ----My Jsp code is-- --</FONT> </P> <P><FONT size=2><%@ page import="java.sql.*" %></FONT> <BR><FONT size=2><%@ page session="true" %></FONT> <BR><FONT size=2><%@ page language="java" import="pkgclass.*" %></FONT> <BR><FONT size=2><jsp:useBean id="PV1" scope="page" class="pkgclass.UserLogin"/></FONT> </P><BR><BR> <P><FONT size=2><%-- Statements to stop caching at client site --%></FONT > <BR><FONT size=2><%</FONT> <BR><FONT size=2> response.setHeader("Cache-Control","no-store"); //HTTP 1.1</FONT> <BR><FONT size=2> response.setHeader("Pragma","no-cache"); //HTTP 1.0</FONT> <BR><FONT size=2> response.setDateHeader ("Expires", 0); //prevents caching at the proxy</FONT> <BR><FONT size=2>%></FONT> </P> <P><FONT size=2><% PV1.setSID("SDGT");</FONT> <BR><FONT size=2> PV1.setHost("dpwdev02") ;</FONT> <BR><FONT size=2> PV1.setSID("drpd");</FONT> <BR><FONT size=2> PV1.setUID("crdbweb") ;</FONT > <BR><FONT size=2> PV1.setPWD("crdbweb");</FONT> <BR><FONT size=2> String sres = PV1.amplogin();</FONT> <BR><FONT size=2> out.println("Msgback : "+sres);</FONT> </P> <P><FONT size=2>%></FONT> </P><BR> <P><FONT size=2><html></FONT> <BR><FONT size=2><Head><Title>Boots First page</title></head></FONT> </P> <P><FONT size=2><html></FONT> <BR><FONT size=2><body bgcolor="#EBE4DF"></FONT> <BR><FONT size=2><Table></FONT> <BR><FONT size=2> <TH>Broadband Online Order Tracking system </TH></FONT> </P> <P><FONT size=2></Table></FONT> </P> <P><FONT size=2></body></FONT> <BR><FONT size=2></html></FONT> <BR><FONT size=2>-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---</FONT > <BR><FONT size=2>I'm attaching my class code with this mail but I think the problem is that Tomcat can't recognize the drivers</FONT> </P><BR> <P><FONT size=2>Thanks in advance for your reply..</FONT> </P><BR> <P><FONT size=2>Regards,</FONT> </P> <P><FONT size=2>Divya</FONT> </P><BR><BR> <P><FONT size=2>-- --Original Message-- --</FONT> <BR><FONT size=2>From: jakarta [<A href="mailto:jakarta@(protected)">mailto:jakarta@(protected)</A>]</FONT > <BR><FONT size=2>Sent: 09 December 2003 15:04</FONT> <BR><FONT size=2>To: 'Tomcat Users List'</FONT> <BR><FONT size=2>Subject: RE: Tomcat error while using a class with JSP!</FONT> </P><BR> <P><FONT size=2>I believe that you have to package your class ie boots.PVDatabase</FONT> <BR><FONT size=2> </FONT> <BR><FONT size=2>as I recall unpackaged classes are not valid</FONT> <BR><FONT size=2> </FONT> <BR><FONT size=2>John</FONT> </P> <P><FONT size=2>-- --Original Message-- --</FONT> <BR><FONT size=2>From: GuptaD@(protected) [<A href="mailto:GuptaD@(protected)">mailto:GuptaD@(protected)</A> ] </FONT><BR><FONT size=2>Sent: Tuesday, December 09, 2003 9:42 AM</FONT> <BR><FONT size=2>To: tomcat-user@(protected)</FONT> <BR><FONT size=2>Subject: Tomcat error while using a class with JSP!</FONT> </P><BR><BR><BR> <P><FONT size=2>Hi All, </FONT></P> <P><FONT size=2> I am new to Tomcat so I would really appreciate if somebody could</FONT> <BR><FONT size=2>help me in this. </FONT></P> <P><FONT size=2>I have Tomcat 4.1.29 installed on my windows 2000 machine. At the same</FONT> <BR><FONT size=2>level as examples is in Tomcat path, I 've created a directory called</FONT> <BR><FONT size=2>boots(this is my application directory.) and have a index.jsp under</FONT> <BR><FONT size=2>boots and a class called PVDatabase.class under C:\Program Files\Apache</FONT> <BR><FONT size=2>Group\Tomcat 4.1\webapps\boots\WEB-INF\classes directory where</FONT> <BR><FONT size=2>C:\Program Files\Apache Group\Tomcat 4.1 is my CATALINA_HOME variable.</FONT> </P> <P><FONT size=2> I have modified server.xml to include the context boots there. When</FONT> <BR><FONT size=2>I try to call this class from my index.jsp it gives me the following</FONT> <BR><FONT size=2>error.</FONT> </P><BR> <P><FONT size=2>org.apache.jasper.JasperException : Unable to compile class for JSP </FONT></P> <P><FONT size=2>An error occurred at line: 2 in the jsp file: /index.jsp </FONT></P> <P><FONT size=2>Generated servlet error: </FONT><BR><FONT size=2> [javac] Compiling 1 source file </FONT></P> <P><FONT size=2>C:\Program Files\Apache Group\Tomcat</FONT> <BR><FONT size=2>4.1\work\Standalone\localhost\boots\index_jsp.java:44: cannot resolve</FONT> <BR><FONT size=2>symbol </FONT><BR><FONT size=2>symbol : class PVDatabase </FONT><BR><FONT size=2>location: class org.apache.jsp.index_jsp </FONT><BR><FONT size=2> PVDatabase PV1 = null; </FONT><BR><FONT size=2> ^ </FONT></P><BR><BR> <P><FONT size=2>An error occurred at line: 2 in the jsp file: /index.jsp </FONT></P> <P><FONT size=2>Generated servlet error: </FONT><BR><FONT size=2>C:\Program Files\Apache Group\Tomcat</FONT> <BR><FONT size=2>4.1\work\Standalone\localhost\boots\index_jsp.java:46: cannot resolve</FONT> <BR><FONT size=2>symbol </FONT><BR><FONT size=2>symbol : class PVDatabase </FONT><BR><FONT size=2>location: class org.apache.jsp.index_jsp </FONT><BR><FONT size=2> PV1 = (PVDatabase) pageContext.getAttribute("PV1",</FONT> <BR><FONT size=2>PageContext.PAGE_SCOPE) ; </FONT><BR><FONT size=2> ^ </FONT></P><BR><BR> <P><FONT size=2>An error occurred at line: 2 in the jsp file: /index.jsp </FONT></P> <P><FONT size=2>Generated servlet error: </FONT><BR><FONT size=2>C:\Program Files\Apache Group\Tomcat</FONT> <BR><FONT size=2>4.1\work\Standalone\localhost\boots\index_jsp.java:49: cannot resolve</FONT> <BR><FONT size=2>symbol </FONT><BR><FONT size=2>symbol : class PVDatabase </FONT><BR><FONT size=2>location: class org.apache.jsp.index_jsp </FONT><BR><FONT size=2> PV1 = (PVDatabase)</FONT> <BR><FONT size=2>java.beans.Beans (this.getClass().getClassLoader(),</FONT> <BR><FONT size=2>"PVDatabase"); </FONT><BR><FONT size=2> ^ </FONT><BR><FONT size=2>3 errors </FONT></P><BR> <P><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.jasper.compiler.DefaultErrorHandler (DefaultErrorHa </FONT> <BR><FONT size=2>ndler.java:130) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.jasper.compiler.ErrorDispatcher (ErrorDispatcher.ja </FONT> <BR><FONT size=2>va:293) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.jasper.compiler.Compiler (Compiler.java:353) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.jasper.compiler.Compiler (Compiler.java:370) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.jasper.JspCompilationContext (JspCompilationContext.ja </FONT> <BR><FONT size=2>va:473) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.jasper.servlet.JspServletWrapper (JspServletWrapper.ja </FONT> <BR><FONT size=2>va:190) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.jasper.servlet.JspServlet (JspServlet.java:295) </FONT> </P> <P><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.jasper.servlet.JspServlet (JspServlet.java:241) </FONT><BR><FONT size=2> at javax.servlet.http.HttpServlet (HttpServlet.java:853) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.ApplicationFilterChain (Applica </FONT> <BR><FONT size=2>tionFilterChain.java:247) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.ApplicationFilterChain (ApplicationFilt </FONT> <BR><FONT size=2>erChain.java:193) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardWrapperValve (StandardWrapperValv </FONT> <BR><FONT size=2>e.java:256) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i </FONT> <BR><FONT size=2>nvokeNext(StandardPipeline.java:643) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline (StandardPipeline.java:4 </FONT> <BR><FONT size=2>80) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.ContainerBase (ContainerBase.java:995) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardContextValve (StandardContextValv </FONT> <BR><FONT size=2>e.java:191) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i </FONT> <BR><FONT size=2>nvokeNext(StandardPipeline.java:643) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline (StandardPipeline.java:4 </FONT> <BR><FONT size=2>80) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.ContainerBase (ContainerBase.java:995) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardContext (StandardContext.java:241 </FONT> <BR><FONT size=2>7) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardHostValve (StandardHostValve.java </FONT> <BR><FONT size=2>:180) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i </FONT> <BR><FONT size=2>nvokeNext(StandardPipeline.java:643) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa </FONT> <BR><FONT size=2>lve.java:171) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i </FONT> <BR><FONT size=2>nvokeNext(StandardPipeline.java:641) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.valves.ErrorReportValve (ErrorReportValve.java </FONT> <BR><FONT size=2>:172) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i </FONT> <BR><FONT size=2>nvokeNext(StandardPipeline.java:641) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline (StandardPipeline.java:4 </FONT> <BR><FONT size=2>80) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.ContainerBase (ContainerBase.java:995) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardEngineValve (StandardEngineValve. </FONT> <BR><FONT size=2>java:174) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline $StandardPipelineValveContext.i </FONT> <BR><FONT size=2>nvokeNext(StandardPipeline.java:643) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.StandardPipeline (StandardPipeline.java:4 </FONT> <BR><FONT size=2>80) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.catalina.core.ContainerBase (ContainerBase.java:995) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.coyote.tomcat4.CoyoteAdapter (CoyoteAdapter.java:193) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.coyote.http11.Http11Processor (Http11Processor.java:78 </FONT> <BR><FONT size=2>1) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.coyote.http11.Http11Protocol $Http11ConnectionHandler.processC </FONT> <BR><FONT size=2>onnection(Http11Protocol.java:549) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:58 </FONT> <BR><FONT size=2>9) </FONT><BR><FONT size=2> at</FONT> <BR><FONT size=2>org.apache.tomcat.util.threads.ThreadPool $ControlRunnable.run(ThreadPool </FONT> <BR><FONT size=2>.java:666) </FONT><BR><FONT size=2> at java.lang.Thread (Thread.java:536) </FONT></P><BR><BR><BR> <P><FONT size=2> I am not really sure as what am I missing here in configuration. I'm</FONT> <BR><FONT size=2>sending my server.xml and index.jsp with this mail..</FONT> </P> <P><FONT size=2>Looking forward to hear from you very soon. </FONT></P> <P><FONT size=2>Thanks & Regards, </FONT></P><BR> <P><FONT size=2>Divya </FONT><BR><FONT size=2><<server.xml>> <<index.jsp>> </FONT></P> <P><FONT face=Arial color=#000000 size=2></FONT> </P></BODY></HTML>
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ To unsubscribe, e-mail: tomcat-user-unsubscribe@(protected) For additional commands, e-mail: tomcat-user-help@(protected)
|
|
 |