Mapped to default message

2003-11-20 Thread Simon Taylor
cleListener.createMBeans(ServerLifecy
cleListener.java:854)
at
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
cleListener.java:828)
at
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
cleListener.java:372)
at
org.apache.catalina.mbeans.ServerLifecycleListener.lifecycleEvent(ServerLife
cycleListener.java:226)
at
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSuppor
t.java:166)
at
org.apache.catalina.core.StandardServer.start(StandardServer.java:2183)
at org.apache.catalina.startup.Catalina.start(Catalina.java:512)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
at java.lang.reflect.Method.invoke(Native Method)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
Starting service Tomcat-Standalone
Apache Tomcat/4.1.29


Simon


Simon Taylor
Managed Services Technology Consultant
Nortel Networks
p -  01279 404289 (ESN 742 4289)
m - 07740 533743 (ESN 748 3743)
e -  [EMAIL PROTECTED]

"I code therefore I am"



Cant find the relevant servlet

2003-11-21 Thread Simon Taylor
First time using Apache and Tomcat - almost got it working but not quite.

Using Apache Virtual Host to redirect to Tomcat.
Have virtual host set up in Apache and Host entry that matches the virtual
host name in Tomcat.
I have logging on at the Host Level and at the Context level.

Host:-
2003-11-21 16:24:23 StandardHost[enmc-mic]: Mapping request URI
'/slink/servlet/login'
2003-11-21 16:24:23 StandardHost[enmc-mic]:  Mapped to context '/slink'

Which proves (I think) that Apache has routed the request via JK to Tomcat

Context:
2003-11-21 16:20:21 StandardContext[/slink]: Starting completed
2003-11-21 16:24:23 StandardContext[/slink]: Mapping contextPath='/slink'
with requestURI='/slink/servlet/login' and relativeURI='/servlet/login'
2003-11-21 16:24:23 StandardContext[/slink]:   Trying exact match
2003-11-21 16:24:23 StandardContext[/slink]:   Trying prefix match
2003-11-21 16:24:23 StandardContext[/slink]:   Trying extension match
2003-11-21 16:24:23 StandardContext[/slink]:   Trying default match
2003-11-21 16:24:23 StandardContext[/slink]:  Mapped to servlet 'default'
with servlet path '/servlet/login' and path info 'null' and update=true

Which proves that Tomcat cannot map the URI to a servlet and has mapped to
default.

How can I tell what servlets Tomcat thinks exist for a context? The web.xml
for the context looks fine to me - Tomcat Manager just lists the apps not
the servlets within right?

Do I need to be using servlet-mapping? Just so long as the web.xml defines
the name of the servlet (login in the eg above) and maps that to a class
name within the context should be ok right?

Any help appreciated very much indeed.

Simon


Simon Taylor
Managed Services Technology Consultant
Nortel Networks
p -  01279 404289 (ESN 742 4289)
m - 07740 533743 (ESN 748 3743)
e -  [EMAIL PROTECTED]

"I code therefore I am"



Tomcat and Servlet Debugging

2003-11-22 Thread Simon Taylor
I am new to Java and Tomcat having just inherited the admin of some servlets
from someone who has left the company.
I have a servlet that isn't doing what I expect.
It is littered with lines of the following type:-

writeError("Session was not created by superclass");

Which refers to :-

protected void writeDebug(Object msg)
  {
if (debug==1) {
  Date date = new Date();
  System.err.println("[" + date.toString() + "] [debug] [" +
 this.getClass().getName() + "] " + msg.toString());
  debugMsg = debugMsg
+ ""
+ msg.toString() + "\n";
}
return;
  }

This is throwing an error but I get no error in any of the Tomcat logs even
though I have a Context Logger set up to debug.
I have manually set debug = 1 at the top of the script recompiled and
redeployed and still no debug messages.
Where would these end up.

Reading around it looks like a better approach would be to use Log4J to
debug the servlet. I'd rather not do that if I can get away with a quick fix
using the existing code.
Comments pls.

Simon


Simon Taylor
Managed Services Technology Consultant
Nortel Networks
p -  01279 404289 (ESN 742 4289)
m - 07740 533743 (ESN 748 3743)
e -  [EMAIL PROTECTED]

"I code therefore I am"



RE: Tomcat and Servlet Debugging

2003-11-22 Thread Simon Taylor
Great found it  - must have looked in every other log file except that one.

Can you tell me what the following means please:-

javax.management.InstanceNotFoundException: MBeanServer cannot find MBean
with ObjectName
Catalina:type=Valve,sequence=3571240,path=/slink,host=enmc-mic,se
rvice=Tomcat-Standalone

-Original Message-
From: Ben Souther [mailto:[EMAIL PROTECTED] 
Sent: 22 November 2003 19:32
To: Tomcat Users List
Subject: Re: Tomcat and Servlet Debugging


> System.err.println("[" + date.toString() + "] [debug] [" +
That lines tells you that it's being printed out to Standard Error.

Which OS are you running on?

On Unix, both standard out and standard err get printed to 
TOMCAT_HOME/logs/catalina.out

On windows, I believe both go to the command console.
Try running tomcat by CDing to TOMCAT_HOME/bin and typing: catalina 
on the command line.  You should see another DOS window appear which will
show 
any of those messages as they come up.






On Saturday 22 November 2003 01:26 pm, Simon Taylor wrote:
>  System.err.println("[" + date.toString() + "] [debug] [" +

-- 
Ben Souther
F.W. Davison & Company, Inc.



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



RE: Moving from 3.3.1 to 4.1.29 question

2003-11-24 Thread Simon Taylor
You need to explicitly specify a servlet mapping for all servlets or
uncomment the invoker section in the server.xml
Being a newbie I asked this question just the other day - see:-

http://marc.theaimsgroup.com/?l=tomcat-user&m=103945394724196&w=2


Simon

-Original Message-
From: Charles Gardner [mailto:[EMAIL PROTECTED] 
Sent: 24 November 2003 14:35
To: Tomcat Users List
Subject: Moving from 3.3.1 to 4.1.29 question


  I am converting from 3.3.1 to 4.1.29.  Everything seems to be works, got
the admin part working.  It will bring up my application web pages but when
it goes to run a servlet which is in the same place as it was in 3.3.1, it
give me the following error on any servlet.  The web page specifies the
server as ../servlet/ which worked in 3.3.1.  I have the
server.xml file with a context additiona just like the "example" setup
without the dbf stuff.  I have a servlet which is run at startup and it
starts up ok but any thing run from a web page cant be found?

The other files I have not found a home for is
/conf/apps_adventa.xml  and
/conf/users/adventa-users.xml.


HTTP Status 404 - /adventa/servlet/TWSC01




type Status report

message /adventa/servlet/TWSC01

description The requested resource (/adventa/servlet/TWSC01) is not
available.





Apache Tomcat/4.1.29


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


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



Tomcat 4.1.29 and Remedy 5.1.2 MidTier

2003-11-25 Thread Simon Taylor
Here's hoping someone out there has tried to install the Remedy MidTier
5.1.2 with Tomcat 4.1.29.

I cant get it to work. :-)

I have Tomcat working no problem - running examples and other servlets.
I have Apache working into Tomcat using JK no problem running servlets and
static.
Remedy MidTier doesn't want to play when running config.jsp from Tomcat I
get :-

javax.servlet.ServletException
at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:536)
at org.apache.jsp.config_jsp._jspService(config_jsp.java:357)
at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

Any help gratefully appreciated.

Simon

Simon Taylor
Managed Services Technology Consultant
Nortel Networks
p -  01279 404289 (ESN 742 4289)
m - 07740 533743 (ESN 748 3743)
e -  [EMAIL PROTECTED]

"I code therefore I am"



RE: Tomcat 4.1.29 and Remedy 5.1.2 MidTier

2003-11-26 Thread Simon Taylor
at
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:2
10)
at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:256)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:643)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:191)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:643)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2417)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:643)
at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:171)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:641)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172
)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:641)
at
org.apache.catalina.valves.RequestDumperValve.invoke(RequestDumperValve.java
:221)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:641)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:174)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:643)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at
org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:193)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:781)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConne
ction(Http11Protocol.java:549)
at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:589)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.

-Original Message-
From: Jeff Tulley [mailto:[EMAIL PROTECTED] 
Sent: 25 November 2003 23:03
To: [EMAIL PROTECTED]
Subject: Re: Tomcat 4.1.29 and Remedy 5.1.2 MidTier


Our Remedy team gave me a URL for the remedy listserver:
[EMAIL PROTECTED] 

Also, I'd check their web / support site.  I cannot imagine that this is not
a solved problem and that you would find good support there to get this
running.

>>> [EMAIL PROTECTED] 11/25/03 3:21:46 PM >>>
Here's hoping someone out there has tried to install the Remedy MidTier
5.1.2 with Tomcat 4.1.29.

I cant get it to work. :-)

I have Tomcat working no problem - running examples and other servlets. I
have Apache working into Tomcat using JK no problem running servlets and
static. Remedy MidTier doesn't want to play when running config.jsp from
Tomcat I get :-

javax.servlet.ServletException
at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:536)
at org.apache.jsp.config_jsp._jspService(config_jsp.java:357)
at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

Any help gratefully appreciated.

Simon

Simon Taylor
Managed Services Technology Consultant
Nortel Networks
p -  01279 404289 (ESN 742 4289)
m - 07740 533743 (ESN 748 3743)
e -  [EMAIL PROTECTED] 

"I code therefore I am"


Jeff Tulley  ([EMAIL PROTECTED])
(801)861-5322
Novell, Inc., The Leading Provider of Net Business Solutions
http://www.novell.com

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



RE: Tomcat 4.1.29 and Remedy 5.1.2 MidTier

2003-11-26 Thread Simon Taylor
agine that this is not
a solved problem and that you would find good support there to get this
running.

>>> [EMAIL PROTECTED] 11/25/03 3:21:46 PM >>>
Here's hoping someone out there has tried to install the Remedy MidTier
5.1.2 with Tomcat 4.1.29.

I cant get it to work. :-)

I have Tomcat working no problem - running examples and other servlets. I
have Apache working into Tomcat using JK no problem running servlets and
static. Remedy MidTier doesn't want to play when running config.jsp from
Tomcat I get :-

javax.servlet.ServletException
at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:536)
at org.apache.jsp.config_jsp._jspService(config_jsp.java:357)
at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

Any help gratefully appreciated.

Simon

Simon Taylor
Managed Services Technology Consultant
Nortel Networks
p -  01279 404289 (ESN 742 4289)
m - 07740 533743 (ESN 748 3743)
e -  [EMAIL PROTECTED] 

"I code therefore I am"


Jeff Tulley  ([EMAIL PROTECTED])
(801)861-5322
Novell, Inc., The Leading Provider of Net Business Solutions
http://www.novell.com 

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


Jeff Tulley  ([EMAIL PROTECTED])
(801)861-5322
Novell, Inc., The Leading Provider of Net Business Solutions
http://www.novell.com

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



RE: RE: Tomcat 4.1.29 and Remedy 5.1.2 MidTier

2003-11-26 Thread Simon Taylor
Remedy Application Request System - comprises a server component which is C
based.
Applications are developed using Remedy workflow on the server.
A midtier component connects to server and dependent on config renders jsp's
which are deployed to Tomcat.
There is a Java API to the Remedy ARS server but other than that it is C as
far as I am aware

-Original Message-
From: Goehring, Chuck Mr., RCI - San Diego
[mailto:[EMAIL PROTECTED] 
Sent: 26 November 2003 22:46
To: Tomcat Users List
Subject: OT: RE: Tomcat 4.1.29 and Remedy 5.1.2 MidTier


Simon,

Just for curiosity, is the Remedy trouble reporting system (don't know the
specific name) Java-based?  We have some support folks that are running
Remedy for the Gov.

Thanks
Chuck


-Original Message-----
From: Simon Taylor [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 12:41 PM
To: 'Tomcat Users List'
Subject: RE: Tomcat 4.1.29 and Remedy 5.1.2 MidTier


Ok thanks for the feedback. 
Ended up reverting to Tomcat 4.0.6 which played better with the midtier.
Cheers

Simon

-Original Message-
From: Jeff Tulley [mailto:[EMAIL PROTECTED] 
Sent: 26 November 2003 18:04
To: [EMAIL PROTECTED]
Subject: RE: Tomcat 4.1.29 and Remedy 5.1.2 MidTier


Yeah, that is mostly correct.  There are also places where the spec is vague
or doesn't specify behavior, and different application servers implement
things differently.

There are not a whole lot of spec or operation changes from the 4.0.x series
that would completely break you.  Offhand I can think of one
though:  The invoker servlet.  It allows you to fire up a servlet directly
by class name without defining it in your web.xml.  Relying on that is
dangerous and does lead to non-portable applications.  As of Tomcat 4.1.12,
the invoker was disabled by default.  But, since you are running a JSP,
there is no guarantee that there is a servlet in the mix (unless the JSP is
doing a forward to a servlet or something).

I think our Remedy team is using the ServletExec, so I do not have any
examples myself of how to get it working on Tomcat.  And, the full exception
does not seem to be of much help.

Maybe set debug="99" in the context definition and in all places where
debug="0" in server.xml.  That might yield a better error message. 
(Maybe not though).

>>> [EMAIL PROTECTED] 11/26/03 2:48:29 AM >>>
Hi Jeff,

Thanks for the response.
I already have a call in with Remedy and postings on the ARSLIST (no value
from either so far). The ARSList does not have one posting that states the
Midtier can be made to work with Tomcat (even though the doc states it can).
Remedy Midtier comes with ServletExec as the default container - but I am
loathe to swap Tomcat out as we already use it for other servlets. The
support for 5.1.2 on Tomcat is there. Plus we are already running Remedy
ARWEB 4.1.1 using Tomcat.

I am new to Java, Tomcat and Servlets but have been reading around, Murachs
Servlets and Wrox - Professional Apache Tomcat book. If a webapp is built so
it doesn't rely on container specific extensions then it should be portable
across containers right?

Also what might be an obstacle to a webapp running on Tomcat 4.0.x but not
on 4.1.x. I have read that these versions support different servlet
specifications but aren't they backwardly compatible? 


On attempting to use Coyote HTTP Connector straight to Tomcat via
http://enmc-mic:4321/arsys/apps/shared/config/config.jsp 

I get:-

type Exception report

message

description The server encountered an internal error () that prevented it
from fulfilling this request.

exception

org.apache.jasper.JasperException
at
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:2
54)
at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:256)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:643)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:191)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:643)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at
org.apache.catalina.core.ContainerBase.invoke(Container

Tomcat Just Shuts down without reason (that i can see)

2005-06-27 Thread Simon Taylor



Tomcat 4.1.31 - Solaris 9 - Java 1.5
 
Currently Tomcat shuts down after what seems to be 
a variable amount of time.All contexts within the host are shut 
down
 
And the following are evident in the 
logs:-
 
log12005-06-27 17:15:41 
StandardHost[localhost]: Removing web application at context path 
/admin2005-06-27 17:15:41 StandardHost[localhost]: Removing web application 
at context path /webdav2005-06-27 17:15:41 StandardHost[localhost]: Removing 
web application at context path /examples2005-06-27 17:15:41 
StandardHost[localhost]: Removing web application at context path 
/tomcat-docs2005-06-27 17:15:41 StandardHost[localhost]: Removing web 
application at context path /arsys2005-06-27 17:15:41 
StandardHost[localhost]: Removing web application at context path 2005-06-27 
17:15:41 StandardHost[localhost]: Removing web application at context path 
/manager
log2
2005-06-27 17:15:41 StandardContext[/arsys]: 
Stopping2005-06-27 17:15:41 StandardContext[/arsys]: Stopping 
filters2005-06-27 17:15:41 StandardContext[/arsys]: Sending application stop 
events2005-06-27 17:15:41 StandardContext[/arsys]: Processing standard 
container shutdown2005-06-27 17:15:41 ContextConfig[/arsys]: ContextConfig: 
Processing STOP2005-06-27 17:15:41 StandardContext[/arsys]: Stopping 
complete
log3
2005-06-27 17:15:41 SessionListener: 
contextDestroyed()2005-06-27 17:15:41 ContextListener: 
contextDestroyed()
 
 
Looks like its performing a normal shutdown to me - but why? is it an 
inactivity timeout - as i am not seeing any activity around the time of the 
shutdown.
 
This is the second server we have had this happen on and on two different 
versions of tomcat and two versions of Java.
 
Any 
ideas?
Simon 
Taylor (Engineer)Service Tools Solutions 
(STS)Nortel p - 01628 617291 (ESN 6 861 
7291)m - 07740 533743 (ESN 748 3743)e - 
[EMAIL PROTECTED] 
 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tomcat Just Shuts down without reason (that i can see)

2005-06-27 Thread Simon Taylor
I tend to agree - but wouldn't I see somewhere this system.exit being run
somewhere in a tomcat logfile.
In investigating this ive had verbose debug set on at all levels within the
Tomcat log structure and havent found a call anywhere that might indicate
this is happening.

Do you have any suggestions as to where to look within the tomcat log to
discover which code is causing the issue.
The arsys app in question is a packaged Remedy application (yes im following
up with them also).

Thanks

Simon

-Original Message-
From: Anoop kumar V [mailto:[EMAIL PROTECTED] 
Sent: 27 June 2005 22:39
To: Tomcat Users List
Subject: Re: Tomcat Just Shuts down without reason (that i can see)

looks like there is some code in one of your webapps that is causing a
shutdown - I know for one that if you put System.exit(0) in one of your
servlets and this servlet is invoked at startup (or through another servlet)
then it simulates a normal shutdown of Tomcat (or any app server for that
matter)

I would look into each of the webapps and see if code is helping Tomcat
behave in that way - I would start with the arpsys webapp since the others
seem to be default tomcat provided examples.

Also my suggesting is to remove all webapps that u do not need and leave
only those webapps that u absolutely require. In our setup since no one
would be using the manager/admin apps we have completely done away with
those and I think it helps in the server performnace - lesser webapps -
lesser load.

-Anoop

On 6/27/05, Simon Taylor <[EMAIL PROTECTED]> wrote:
>  
> Tomcat 4.1.31 - Solaris 9 - Java 1.5
>   
> Currently Tomcat shuts down after what seems to be a variable amount 
> of time.
> All contexts within the host are shut down
>   
> And the following are evident in the logs:-
>   
> log1
> 2005-06-27 17:15:41 StandardHost[localhost]: Removing web application 
> at context path /admin
> 2005-06-27 17:15:41 StandardHost[localhost]: Removing web application 
> at context path /webdav
> 2005-06-27 17:15:41 StandardHost[localhost]: Removing web application 
> at context path /examples
> 2005-06-27 17:15:41 StandardHost[localhost]: Removing web application 
> at context path /tomcat-docs
> 2005-06-27 17:15:41 StandardHost[localhost]: Removing web application 
> at context path /arsys
> 2005-06-27 17:15:41 StandardHost[localhost]: Removing web application 
> at context path
> 2005-06-27 17:15:41 StandardHost[localhost]: Removing web application 
> at context path /manager
>  
> log2
> 2005-06-27 17:15:41 StandardContext[/arsys]: Stopping
> 2005-06-27 17:15:41 StandardContext[/arsys]: Stopping filters
> 2005-06-27 17:15:41 StandardContext[/arsys]: Sending application stop 
> events
> 2005-06-27 17:15:41 StandardContext[/arsys]: Processing standard 
> container shutdown
> 2005-06-27 17:15:41 ContextConfig[/arsys]: ContextConfig: Processing 
> STOP
> 2005-06-27 17:15:41 StandardContext[/arsys]: Stopping complete
>  
> log3
> 2005-06-27 17:15:41 SessionListener: contextDestroyed()
> 2005-06-27 17:15:41 ContextListener: contextDestroyed()
>   
>   
> Looks like its performing a normal shutdown to me - but why? is it an 
> inactivity timeout - as i am not seeing any activity around the time 
> of the shutdown.
>   
> This is the second server we have had this happen on and on two 
> different versions of tomcat and two versions of Java.
>   
> Any ideas? 
> 
> Simon Taylor (Engineer)
> Service Tools Solutions (STS)
> Nortel
> p - 01628 617291 (ESN 6 861 7291)
> m - 07740 533743 (ESN 748 3743)
> e - [EMAIL PROTECTED]
>  
>   
> -
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


--
Thanks and best regards,
Anoop

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




RE: Tomcat Book

2005-07-12 Thread Simon Taylor
Professional Apache Tomcat - Wrox Press is pretty good 

-Original Message-
From: Adi Gati [mailto:[EMAIL PROTECTED] 
Sent: 12 July 2005 09:40
To: tomcat-user@jakarta.apache.org
Subject: Tomcat Book

Hi,

 

Can anyone recommend on a good Tomcat Book?

 

Thanks.


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