Re: Preload Servlet in Tomcat

2001-04-26 Thread Gustavo Comba

Hello,

And I am also cannot login the admin page of the tomcat. What is the
username and password for the tomcat admin page?

There is a file named tomcat-users.xml in yout /conf directory (in
tomcat_home). Just add a user with a fairly complex password with the role
admin. Also change the defuault password tomcat for the other users,
just in case...

I'm new with Tomcat, but it work for me!

Gustavo Comba




RE: Preload Servlet in Tomcat

2001-04-26 Thread William Kaufman

a) What error do you get?

b) Do you get the same error when you start the servlet manually (by
connecting with a browser)?


-- Bill K.


 -Original Message-
 From: patricklee99 [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 26, 2001 2:40 AM
 To: [EMAIL PROTECTED]
 Subject: Preload Servlet in Tomcat
 
 
 
 Hello,
 
 I am just develop a application in Jrun and I am trying to 
 run it on tomcat 3.2.1 (Both for web server and servlet 
 engine) on win2k. And I want to preload a servlet when the 
 tomcat start.
 
 I add some line in the file TOMCAT_HOME/conf/web.xml like that 
 
 servlet
 servlet-name
 ContentServletNT
 /servlet-name
 servlet-class
 com.i2.iba.test.ContentServletNT
 /servlet-class
   load-on-startup
 1
   /load-on-startup
 /servlet
 
 But after I restart the server, it seems not work. It display 
 a error with the same as without this line. Is there any 
 problem with this few line?
 
 And I am also cannot login the admin page of the tomcat. What 
 is the username and password for the tomcat admin page?
 
 Thanks for your help.
 
 Regards,
 
 Patrick Lee
 
 ==
 ·s®ö§K¶O¹q¤l«H½c  http://sinamail.sina.com.hk
 
 
 



RE: Preload Servlet in Tomcat

2001-04-26 Thread patricklee99


 a) What error do you get?

It is the error message.

Internal Servlet Error:

javax.servlet.ServletException
at 
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:459)

at 
_0002fuser_0005flist_0002ejspuser_0005flist_jsp_0._jspService(_0002fuser_0005flist_0002ejspuser_0005flist_jsp_0.java:150)

at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:177)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
at org.apache.tomcat.core.Handler.service(Handler.java:286)
at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
at 
org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
at 
org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:210)

at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
at java.lang.Thread.run(Thread.java:484)

Root cause: 
java.lang.NullPointerException
at 
_0002fuser_0005flist_0002ejspuser_0005flist_jsp_0._jspService(_0002fuser_0005flist_0002ejspuser_0005flist_jsp_0.java:73)

at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:177)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
at org.apache.tomcat.core.Handler.service(Handler.java:286)
at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
at 
org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
at 
org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:210)

at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
at java.lang.Thread.run(Thread.java:484)

And it is the same problem that I did not add the line for the preload servlet in the 
web.xml. So I don't know is that any error on the line that I add to the web.xml. 
Since the applcation is running on the Jrun with no problem and I only change the 
environment from Jrun to tomcat. And tomcat and Jrun seems to be the same to be the 
servlet engine. So I think there is the problem of the setting. But I still do not 
where is the problem come from.

Thanks for your help.


 b) Do you get the same error when you start the servlet manually (by
 connecting with a browser)?


 -- Bill
 K.


 -Original Message-
 From: patricklee99 [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 26, 2001 2:40 AM
 To: [EMAIL PROTECTED]
 Subject: Preload Servlet in Tomcat



 Hello,

 I am just develop a application in Jrun and I am trying to
 run it on tomcat 3.2.1 (Both for web server and servlet
 engine) on win2k. And I want to preload a servlet when the
 tomcat start.

 I add some line in the file TOMCAT_HOME/conf/web.xml
like that

 servlet
 servlet-name
 ContentServletNT
 /servlet-name
 servlet-class
 com.i2.iba.test.ContentServletNT
 /servlet-class
   load-on-startup
 1
   /load-on-startup
 /servlet

 But after I restart the server, it seems not work. It display
 a error with the same as without this line. Is there any
 problem with this few line?

 And I am also cannot login the admin page of the tomcat. What
 is the username and password for the tomcat admin page?

 Thanks for your help.

 Regards,

 Patrick Lee


==
 ¡Psreg;ouml;¡±Kpara;Osup1;qcurren;llaquo;Hfrac12;c  
http://sinamail.sina.com.hk




==
·s®ö§K¶O¹q¤l«H½c