Re: Tomcat4.1.2 shutdown error

2002-06-18 Thread Mike Niemaz

Remy Maucherat wrote:

 Shapira, Yoav wrote:
  Howdy,
  I actually disagree with the interpretation of the error: if you try to
  shutdown tomcat when it's not running, you'll get a ConnectionRefused
  exception from when it tries to connect to the shutdown port.
 
  But I don't have an answer to the original question ;)  Is Remy watching
  this thread?

 Looking at the line number, the NamingResources field is null, but can't
 see any situation where this would happen.

 Could you send what exactly you are doing to get that error, or any
 specific info on your configuration ? If you have all your webapps up
 and running, I really don't see how it can happen.

 Remy

Hi and thank you for answering.
I got the impression that I was the only one that could read my mail ;-)
Tomcat is up and running as well as my webapp, although I do have
unexpected jsp error message since I've upgraded from T3.2 to T4.1.2.
This shutdown error happens when I run the catalina script with 'stop'.
Maybe reading my .xml (first attempt) would help you finding what's
going on?
Thanx again,

--mike




 java.lang.NullPointerException
 at
 
 
 org.apache.catalina.core.NamingContextListener.lifecycleEvent(NamingCon
 
  text
 
 L
 istener.java:343)
 
 at
 
 
 org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleS
 
  uppo
 
 r
 t.java:166)
 
 at
 
 
  org.apache.catalina.core.StandardServer.stop(StandardServer.java:2216)
 
 at
 
  org.apache.catalina.startup.Catalina.start(Catalina.java:541)
 
 at
 org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
 at
 org.apache.catalina.startup.Catalina.process(Catalina.java:180)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
 
  Method)
 
 at
 
 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja
 
  va:3
 
 9
 )
 
 at
 
 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso
 
  rImp
 
 l
 .java:25)
 
 at java.lang.reflect.Method.invoke(Method.java:324)
 at
 org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)

 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]


?xml version=1.0 encoding=ISO-8859-1?
!DOCTYPE web-app
 PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
http://java.sun.com/dtd/web-app_2_3.dtd;

web-app
!-- Define example application events listeners --
listener
listener-classlisteners.ContextListener/listener-class
/listener
listener
listener-classlisteners.SessionListener/listener-class
/listener

servlet
servlet-name
cgi
/servlet-name
servlet-class
userInterface.servlets.cgi
/servlet-class
/servlet

   servlet
servlet-name
userInterface.servlets.cgi_ei
/servlet-name
servlet-class
EI.userInterface.servlets.cgi_ei
/servlet-class
/servlet

   servlet
servlet-name
Servletinitializer
/servlet-name
servlet-class
userInterface.servlets.Servletinitializer
/servlet-class
load-on-startup
1
/load-on-startup
   /servlet

   servlet-mapping
servlet-namecgi/servlet-name
url-pattern/docsoul/*/url-pattern
   /servlet-mapping
!-- 
   security-constraint
  display-nameExample Security Constraint/display-name
  web-resource-collection
 web-resource-nameProtected Area/web-resource-name --
 !-- Define the context-relative URL(s) to be protected --
 !-- url-pattern/jsp/security/protected/*/url-pattern --
 !-- If you list http methods, only those methods are protected --
 !-- http-methodDELETE/http-method
 http-methodGET/http-method
 http-methodPOST/http-method
 http-methodPUT/http-method
  /web-resource-collection
  auth-constraint --
 !-- Anyone with one of the listed roles may access this area --
 !-- role-nametomcat/role-name
 role-namerole1/role-name
  /auth-constraint
/security-constraint
--

/web-app


!-- Alternate Example-less Configuration File --
!-- Note that component elements are nested corresponding to their
 parent-child relationships with each other --

!-- A Server is a singleton element that represents the entire JVM,
 which may contain one or more Service instances.  The Server
 listens for a shutdown command on the indicated port.

 Note:  A Server is not itself a Container, so you may not
 define subcomponents such as Valves or Loggers at this level.
 --

Server port=8005 shutdown=SHUTDOWN debug=0


  !-- Uncomment this entry to enable JMX MBeans support --
!--
  Listener className=org.apache.catalina.mbeans.ServerLifecycleListener
debug=0 port=-1 login=admin password=admin/
--


  !-- A Service is a collection of one or 

Re: Tomcat4.1.2 shutdown error

2002-06-18 Thread Mike Niemaz

Hi and thank you for answering.
I got the impression that I was the only one that could read my mails ;-)
Tomcat is up and running as well as my webapp, although I do have
unexpected jsp error message since I've upgraded from T3.2 to T4.1.2.
This shutdown error happens when I run the catalina script with 'stop'.
Maybe reading my .xml (first attempt) would help you finding what's
going on?
Thanx again,

--mike

WEB.XML --
 
?xml version=1.0 encoding=ISO-8859-1?
!DOCTYPE web-app
 PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
http://java.sun.com/dtd/web-app_2_3.dtd;

web-app
!-- Define example application events listeners --
listener
listener-classlisteners.ContextListener/listener-class
/listener
listener
listener-classlisteners.SessionListener/listener-class
/listener

servlet
servlet-name
cgi
/servlet-name
servlet-class
userInterface.servlets.cgi
/servlet-class
/servlet

   servlet
servlet-name
userInterface.servlets.cgi_ei
/servlet-name
servlet-class
EI.userInterface.servlets.cgi_ei
/servlet-class
/servlet

   servlet
servlet-name
Servletinitializer
/servlet-name
servlet-class
userInterface.servlets.Servletinitializer
/servlet-class
load-on-startup
1
/load-on-startup
   /servlet

   servlet-mapping
servlet-namecgi/servlet-name
url-pattern/docsoul/*/url-pattern
   /servlet-mapping
!--
   security-constraint
  display-nameExample Security Constraint/display-name
  web-resource-collection
 web-resource-nameProtected Area/web-resource-name --
 !-- Define the context-relative URL(s) to be protected --
 !-- url-pattern/jsp/security/protected/*/url-pattern --
 !-- If you list http methods, only those methods are protected --
 !-- http-methodDELETE/http-method
 http-methodGET/http-method
 http-methodPOST/http-method
 http-methodPUT/http-method
  /web-resource-collection
  auth-constraint --
 !-- Anyone with one of the listed roles may access this area --
 !-- role-nametomcat/role-name
 role-namerole1/role-name
  /auth-constraint
/security-constraint
--

/web-app


=
SERVER.XML --
  
!-- Alternate Example-less Configuration File --
!-- Note that component elements are nested corresponding to their
 parent-child relationships with each other --

!-- A Server is a singleton element that represents the entire JVM,
 which may contain one or more Service instances.  The Server
 listens for a shutdown command on the indicated port.

 Note:  A Server is not itself a Container, so you may not
 define subcomponents such as Valves or Loggers at this level.
 --

Server port=8005 shutdown=SHUTDOWN debug=0

  !-- Uncomment this entry to enable JMX MBeans support --
!--
  Listener className=org.apache.catalina.mbeans.ServerLifecycleListener
debug=0 port=-1 login=admin password=admin/
--

  !-- A Service is a collection of one or more Connectors that share
   a single Container (and therefore the web applications visible
   within that Container).  Normally, that Container is an Engine,
   but this is not required.

   Note:  A Service is not itself a Container, so you may not
   define subcomponents such as Valves or Loggers at this level.
   --

  !-- Define the Tomcat Stand-Alone Service --
  Service name=Tomcat-Standalone

!-- A Connector represents an endpoint by which requests are received
 and responses are returned.  Each Connector passes requests on to the
 associated Container (normally an Engine) for processing.

 By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
 You can also enable an SSL HTTP/1.1 Connector on port 8443 by
 following the instructions below and uncommenting the second Connector
 entry.  SSL support requires the following steps (see the SSL Config
 HOWTO in the Tomcat 4.0 documentation bundle for more detailed
 instructions):
 * Download and install JSSE 1.0.2 or later, and put the JAR files
   into $JAVA_HOME/jre/lib/ext.
 * Execute:
 %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
 $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA  (Unix)
   with a password value of changeit for both the certificate and
   the keystore itself.

 By default, DNS lookups are enabled when a web application calls
 request.getRemoteHost().  This can have an adverse impact on
  

RE: Tomcat4.1.2 shutdown error

2002-06-13 Thread Shapira, Yoav

Howdy,
I actually disagree with the interpretation of the error: if you try to
shutdown tomcat when it's not running, you'll get a ConnectionRefused
exception from when it tries to connect to the shutdown port.

But I don't have an answer to the original question ;)  Is Remy watching
this thread?

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Yousef Shemisa [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 12, 2002 6:09 PM
To: Tomcat Users List
Subject: Re: Tomcat4.1.2 shutdown error

Mike,

Is it possible that Tomcat is not running when you execute shutdown.sh?
This
is what it looks like from the error response.

Cheers.
---
Yousef Shemisa
650-365-9704 ext 12
http://www.netunderdogs.com
Menlo Park, CA

~Savin' the Web Doggie Style~
We GUARANTEE our Web Development will exceed your expectations.

- Original Message -
From: Mike Niemaz [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 12, 2002 3:30 AM
Subject: Tomcat4.1.2 shutdown error


 I'm getting this error when I try to stop Tomcat.
 Any idea?

 Thanx,

 -mike

 java.lang.NullPointerException
 at

org.apache.catalina.core.NamingContextListener.lifecycleEvent(NamingCon
text
L
istener.java:343)

 at

org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleS
uppo
r
t.java:166)

 at

org.apache.catalina.core.StandardServer.stop(StandardServer.java:2216)
 at
org.apache.catalina.startup.Catalina.start(Catalina.java:541)

 at
 org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
 at
 org.apache.catalina.startup.Catalina.process(Catalina.java:180)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
 at

sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja
va:3
9
)

 at

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso
rImp
l
.java:25)

 at java.lang.reflect.Method.invoke(Method.java:324)
 at
 org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)


 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]





--
To unsubscribe, e-mail:   mailto:tomcat-user-
[EMAIL PROTECTED]
For additional commands, e-mail: mailto:tomcat-user-
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Tomcat4.1.2 shutdown error

2002-06-13 Thread Remy Maucherat

Shapira, Yoav wrote:
 Howdy,
 I actually disagree with the interpretation of the error: if you try to
 shutdown tomcat when it's not running, you'll get a ConnectionRefused
 exception from when it tries to connect to the shutdown port.
 
 But I don't have an answer to the original question ;)  Is Remy watching
 this thread?

Looking at the line number, the NamingResources field is null, but can't 
see any situation where this would happen.

Could you send what exactly you are doing to get that error, or any 
specific info on your configuration ? If you have all your webapps up 
and running, I really don't see how it can happen.

Remy

java.lang.NullPointerException
at


org.apache.catalina.core.NamingContextListener.lifecycleEvent(NamingCon
 
 text
 
L
istener.java:343)

at


org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleS
 
 uppo
 
r
t.java:166)

at


 org.apache.catalina.core.StandardServer.stop(StandardServer.java:2216)
 
at

 org.apache.catalina.startup.Catalina.start(Catalina.java:541)
 
at
org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
at
org.apache.catalina.startup.Catalina.process(Catalina.java:180)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native

 Method)
 
at


sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja
 
 va:3
 
9
)

at


sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso
 
 rImp
 
l
.java:25)

at java.lang.reflect.Method.invoke(Method.java:324)
at
org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Tomcat4.1.2 shutdown error

2002-06-12 Thread Mike Niemaz

I'm getting this error when I try to stop Tomcat.
Any idea?

Thanx,

-mike

java.lang.NullPointerException
at
org.apache.catalina.core.NamingContextListener.lifecycleEvent(NamingContextListener.java:343)

at
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)

at
org.apache.catalina.core.StandardServer.stop(StandardServer.java:2216)
at org.apache.catalina.startup.Catalina.start(Catalina.java:541)

at
org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
at
org.apache.catalina.startup.Catalina.process(Catalina.java:180)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:324)
at
org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Tomcat4.1.2 shutdown error

2002-06-12 Thread Yousef Shemisa

Mike,

Is it possible that Tomcat is not running when you execute shutdown.sh? This
is what it looks like from the error response.

Cheers.
---
Yousef Shemisa
650-365-9704 ext 12
http://www.netunderdogs.com
Menlo Park, CA

~Savin' the Web Doggie Style~
We GUARANTEE our Web Development will exceed your expectations.

- Original Message -
From: Mike Niemaz [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 12, 2002 3:30 AM
Subject: Tomcat4.1.2 shutdown error


 I'm getting this error when I try to stop Tomcat.
 Any idea?

 Thanx,

 -mike

 java.lang.NullPointerException
 at

org.apache.catalina.core.NamingContextListener.lifecycleEvent(NamingContextL
istener.java:343)

 at

org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSuppor
t.java:166)

 at
 org.apache.catalina.core.StandardServer.stop(StandardServer.java:2216)
 at org.apache.catalina.startup.Catalina.start(Catalina.java:541)

 at
 org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
 at
 org.apache.catalina.startup.Catalina.process(Catalina.java:180)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at

sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
)

 at

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)

 at java.lang.reflect.Method.invoke(Method.java:324)
 at
 org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)


 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]





--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]