Re: Tomcat Problem

2002-08-29 Thread Raghupathy, Gurumoorthy
[mailto:[EMAIL PROTECTED]]Sent: 28 August 2002 21:20To: [EMAIL PROTECTED]Subject: Tomcat Problem Hi,     I am using jakarta-tomcat-4.0.4.  I have deployed this on redhat Linux 7.3.  Off late I am seeing that tomcat server is going down and I have to go and restart it.  Sometimes

Tomcat Problem

2002-08-28 Thread karthikeyan
Hi,     I am using jakarta-tomcat-4.0.4.  I have deployed this on redhat Linux 7.3.  Off late I am seeing that tomcat server is going down and I have to go and restart it.  Sometimes it goes down every 2 days and some time only once a week.  I cant track exactly because it very inconsistent.

Re: Tomcat Problem

2002-06-18 Thread kaustubh
TECTED]> Sent: Tuesday, June 18, 2002 6:30 PM Subject: Re: Tomcat Problem > Kaustubh, > What port do you have Tomcat and/or any web servers listening on? > What port is your chat server application listening on? > You need to make sure your chat server is not using a socket that is

Re: Re : Tomcat Problem

2002-06-18 Thread James Mitchell
-tools.org -Original Message-From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Chen, GinSent: Tuesday, June 18, 2002 3:16 PMTo: [EMAIL PROTECTED]Subject: Re: Re : Tomcat Problem ctrl - x wo

Re: Re : Tomcat Problem

2002-06-18 Thread Chen, Gin
ctrl - x works too. doesnt the ctrl - c kill it?? -Tim -Original Message-From: James Mitchell [mailto:[EMAIL PROTECTED]]Sent: Tuesday, June 18, 2002 9:36 AMTo: [EMAIL PROTECTED]Subject: Re: Re : Tomcat Problem As was mentioned earlier, your problem is probably due to you

Re: Re : Tomcat Problem

2002-06-18 Thread James Mitchell
about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of kaustubhSent: Tuesday, June 18, 2002 8:39 AMTo: [EMAIL PROTECTED]Subject: Re : Tomcat Problem yeah...thanks for the suggestions... The environment is Win NT 4.0, IIS , Tomcat 4.0 &

Re: Tomcat Problem

2002-06-18 Thread Richard Yee
Kaustubh, What port do you have Tomcat and/or any web servers listening on? What port is your chat server application listening on? You need to make sure your chat server is not using a socket that is also being used by another program. I highly doubt there is a bug in the ServerSocket class beca

Re: Tomcat Problem

2002-06-18 Thread kaustubh
Can u give me some directions to packet-sniffers?? or just some links?? Thanks a lot, Kaustubh - Original Message - From: "Marco Trevisan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 18, 2002 6:22 PM Subject: Re: Tomcat Problem > Ethereal i

Re: Tomcat Problem

2002-06-18 Thread Marco Trevisan
Ethereal is the magic word ;-) At least I found this packet sniffer easy to use and very useful when I was stuck with no more ideas. This way you see the entire conversation between servers an clients. Marco - Original Message - Hi Marco, I am sorry How do u go about implementing pa

Re: Tomcat Problem

2002-06-18 Thread kaustubh
Hi Marco,I am sorryHow do u go about implementing packet-sniffing??Is it anything related to networking fundas??I coudn't get u...Thanks,Kaustubh

Re: Tomcat Problem

2002-06-18 Thread Marco Trevisan
02 2:26 PM Subject: Tomcat Problem Hi, Very strange problem with Tomcat and my java chat application. Both of these block at serversocket.accept() and I have observed that many times, tomcat and my application just stops processing new requests. When you press control+c or esc(NT-tomcat), the ne

Re : Tomcat Problem

2002-06-18 Thread kaustubh
yeah...thanks for the suggestions... The environment is Win NT 4.0, IIS , Tomcat 4.0 & JDK 1.3 Here is what I do I have an applet in my site. This applet connectes to my ChatServer (Pure Java class) while the other pages are served by IIS + Tomcat integrated together. I start my chat

Re: Tomcat Problem

2002-06-18 Thread Raghupathy, Gurumoorthy
will allow us to solve the issues more quickly   Regards guru -Original Message-From: kaustubh [mailto:[EMAIL PROTECTED]]Sent: 18 June 2002 13:26To: [EMAIL PROTECTED]Subject: Tomcat Problem Hi,Very strange problem with Tomcat and my java chat application.Both of these block

Re: Tomcat Problem

2002-06-18 Thread kaustubh
How to modify (if any) caching settings for Tomcat and/or ServerSocket? - Original Message - From: Galbreath, Mark To: [EMAIL PROTECTED] Sent: Tuesday, June 18, 2002 5:56 PM Subject: Re: Tomcat Problem Only the wildest guess, but this looks like caching

Re: Tomcat Problem

2002-06-18 Thread Galbreath, Mark
Only the wildest guess, but this looks like caching issue. -Original Message-From: kaustubh [mailto:[EMAIL PROTECTED]]Sent: Tuesday, June 18, 2002 8:26 AMTo: [EMAIL PROTECTED]Subject: Tomcat Problem Hi,Very strange problem with Tomcat and my java chat application.Both of

Tomcat Problem

2002-06-18 Thread kaustubh
Hi,Very strange problem with Tomcat and my java chat application.Both of these block at serversocket.accept() and I have observed that manytimes, tomcat and my application just stops processing new requests. Whenyou press control+c or esc(NT-tomcat), the new requests are immediatelyaccepted.

Tomcat Problem

2002-01-08 Thread Earl Edwards
Vijay, Check out this link: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/class-loader-howto.html Which contains this information, notice line with arrow: System - This class loader is normally initialized from the contents of the CLASSPATH environment variable. All such classes are visible

Re: Tomcat Problem

2002-01-08 Thread Brian Moynihan
] Subject: Tomcat Problem Can any one explain why TOMCAT webserver is not taking the CLASSPATH defined in bash_profile. i've installed TOMCAT 4.0 on LINUX 7.0. When i start the server it takes the following classpath :/usr/local/jakarta/bin/bootstrap.jar:/usr/local/java/lib/tools.jar inste

Re: Tomcat Problem

2002-01-07 Thread Christopher K. St. John
vijay wrote: > > i tried to add my CLASSPATH like this: > ... > Any idea how to manipulate this. > Yes. Read the Class Loader HOW-TO. You should have a copy of this in your local Tomcat installation, or you can get to it online at: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/ If you c

Re: Tomcat Problem

2002-01-07 Thread Milt Epstein
On Mon, 7 Jan 2002, vijay wrote: > Yeah it's true that TOMCAT startup script completly ignores the CLASSPATH. > I've checked the catalina .sh script > where it is using it's own CLASSPATH. When i tried to add my bash_profile > CLASSPATH, server startup is giving errors. > This is the code in cata

Re: Tomcat Problem

2002-01-07 Thread vijay
Yeah it's true that TOMCAT startup script completly ignores the CLASSPATH. I've checked the catalina .sh script where it is using it's own CLASSPATH. When i tried to add my bash_profile CLASSPATH, server startup is giving errors. This is the code in catalina.sh CP="$CATALINA_HOME/bin/bootstrap.ja

Re: Tomcat Problem

2002-01-07 Thread Christopher K. St. John
vijay wrote: > > Can you explain what do you mean by " If so, what > may matter is the CLASSPATH (and other environment variables) set up > in that shell script, not in your shell's profile. So you may need to > define the CLASSPATH there" > Read the Class Loader HOW-TO. You should have a copy

Re: Tomcat Problem

2002-01-07 Thread Milt Epstein
On Mon, 7 Jan 2002, vijay wrote: > Hi Milt, > Iam starting TOMCAT using a shell script: /usr/local/jakarta/bin/startup.sh > > But, before starting the tomcat i'm running my bash_profile. > > CAn you explain what do you mean by " If so, what > may matter is the CLASSPATH (and other environment va

Re: Tomcat Problem

2002-01-07 Thread vijay
Hi Milt, Iam starting TOMCAT using a shell script: /usr/local/jakarta/bin/startup.sh But, before starting the tomcat i'm running my bash_profile. CAn you explain what do you mean by " If so, what may matter is the CLASSPATH (and other environment variables) set up in that shell script, not in y

Re: Tomcat Problem

2002-01-07 Thread Milt Epstein
On Mon, 7 Jan 2002, vijay wrote: > Can any one explain why TOMCAT webserver is not taking the > CLASSPATH defined in bash_profile. > > i've installed TOMCAT 4.0 on LINUX 7.0. When i start the server it takes the > following classpath > :/usr/local/jakarta/bin/bootstrap.jar:/usr/local/java/lib/to

Tomcat Problem

2002-01-07 Thread vijay
Can any one explain why TOMCAT webserver is not taking the CLASSPATH defined in bash_profile. i've installed TOMCAT 4.0 on LINUX 7.0. When i start the server it takes the following classpath :/usr/local/jakarta/bin/bootstrap.jar:/usr/local/java/lib/tools.jar instead of taking the CLASSPATH giv

Re: tomcat problem

2001-04-09 Thread Mark Galbreath
In Tomcat's server.xml file, set "reloadable=true." Cheers, Mark - Original Message - From: "Akhil Nagpal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 07, 2001 12:20 AM Subject: tomcat problem > hi > > I am using tomc

tomcat problem

2001-04-06 Thread Akhil Nagpal
hi I am using tomcat as my servlet engine. i am facing a problem in it. When my servlets are recoded or edited, they are not reflected in the sevlet engine. that is i have to restrat the tomcat for getting the edited servlet desired output. Is there any solution to it , that is withoutrestrating

tomcat problem

2001-03-26 Thread p p
hi, I am trying to install tomcat3.2.1 on windows 2000/IIS. I have followed all the instructions mentioned in the document "Tomcat IIS how to". Problem, i ve created the filter with its executable isapi.dll, but when i restart IIS the filter is not getting loaded. The troubleshooting document men