Re: help installing

2005-02-22 Thread Jason Bainbridge
On Tue, 22 Feb 2005 14:00:14 -0800, Jeanne Case [EMAIL PROTECTED] wrote:
 I am new to the list and Tomcat. I know this has probably been answered,
 but I am having trouble finding it in the archives. Is there an
 installation guide that makes sense some where?

Welcome. :)

I actually had to scratch my head thinking about if there was such a
guide and finally had to do a google to find
http://www.coreservlets.com/Apache-Tomcat-Tutorial/ That seems like
just what you're after. Although I don't know what they were thinking
with all that pink and magenta on the page...

Cheers,
-- 
Jason Bainbridge
http://kde.org - [EMAIL PROTECTED]
Personal Site - http://jasonbainbridge.com

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



Re: help installing

2005-02-22 Thread Pete Stevens
On Tue, 22 Feb 2005, Jeanne Case wrote:

 I am new to the list and Tomcat. I know this has probably been answered,
 but I am having trouble finding it in the archives. Is there an
 installation guide that makes sense some where?

 I would like some  thing with a definition of files, what to edit, what
 works, how to install from source. I find the documentation on
 jakarta.apache.org/tomcat to be confusing. Any help is appreciated.

If you're installig on a linux machine, we have a brief guide on setting up
Tomcat for our virtual linux machine service at

http://www.mythic-beasts.com/support/topic_vds_java.html

This is designed for low volume simple usage, everything is done directly by
Tomcat and there is no challenges with connectors and apache for example.

We're in the process of finalising our virtual hosting guide.

Hope this helps,

Pete Stevens

--
Pete Stevens
[EMAIL PROTECTED]
http://www.ex-parrot.com/~pete/

I'd be a morning person if it didn't start so early in the day.

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



Re: help installing

2005-02-22 Thread Jeanne Case
Thanks to all for responding. The information I received was much 
clearer and easier to understand then the apache site!
-J.Case

Jason Bainbridge wrote:
On Tue, 22 Feb 2005 14:00:14 -0800, Jeanne Case [EMAIL PROTECTED] wrote:
I am new to the list and Tomcat. I know this has probably been answered,
but I am having trouble finding it in the archives. Is there an
installation guide that makes sense some where?

Welcome. :)
I actually had to scratch my head thinking about if there was such a
guide and finally had to do a google to find
http://www.coreservlets.com/Apache-Tomcat-Tutorial/ That seems like
just what you're after. Although I don't know what they were thinking
with all that pink and magenta on the page...
Cheers,
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: help installing

2005-02-22 Thread Jeanne Case
Thank you, thank you, thank you!
This is exactly what I was hoping for. Something simple and straight 
forward!
-J. Case

Pete Stevens wrote:
On Tue, 22 Feb 2005, Jeanne Case wrote:

I am new to the list and Tomcat. I know this has probably been answered,
but I am having trouble finding it in the archives. Is there an
installation guide that makes sense some where?
I would like some  thing with a definition of files, what to edit, what
works, how to install from source. I find the documentation on
jakarta.apache.org/tomcat to be confusing. Any help is appreciated.

If you're installig on a linux machine, we have a brief guide on setting up
Tomcat for our virtual linux machine service at
http://www.mythic-beasts.com/support/topic_vds_java.html
This is designed for low volume simple usage, everything is done directly by
Tomcat and there is no challenges with connectors and apache for example.
We're in the process of finalising our virtual hosting guide.
Hope this helps,
Pete Stevens
--
Pete Stevens
[EMAIL PROTECTED]
http://www.ex-parrot.com/~pete/
I'd be a morning person if it didn't start so early in the day.
-
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]


RE: [HELP] installing oracle thin driver for tomcat

2003-04-04 Thread HAMILTON, DALE K (SBCSI)
Be sure the SQLNet layer is installed on the Tomcat server.
Ensure the TNSNames.ora and sqlnet.ora are configured correctly for your
environment
Use classes12.jar for 8i and above (classes111.jar/zip) for 7

-Original Message-
From: Henning Heil [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 04, 2003 10:00 AM
To: Tomcat Users List
Subject: [HELP] installing oracle thin driver for tomcat


Hello all!

I am really stuck installing the mentioned driver (or might sth else be 
wrong?). What I have done up to date:

- downloaded ojdbc14.jar form Oracle
- copied it into tomcat/common/lib directory
- set the classpath to point to the file
- restarted all the stuff (tomcat, apache)
- I use Tomcat 4.1.18 with j2sdk1.4.1_01
- we have Oracle 8.1.7 clients running on corresponding servers I think 
(unfortunatelly don't know the version for sure but the driver should 
work anyway?)

the code I use to get connected:

try {
//  DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
Class.forName(oracle.jdbc.driver.OracleDriver); 
}
catch(ClassNotFoundException ex)
{
  out.println(JDBC-Driver not found!  + ex);
}

//   _/\_ this still works

Connection oConnection = 
DriverManager.getConnection(jdbc:oracle:thin:@dbtest:1605:abcd, 
myuser, mypass);

  crash boom bang . . . I'll attach the error-msg in the end

Can anyone more experienced see what happens?

Thanks for your help (and have a nice weekend!),

Henning



The error msg:

javax.servlet.ServletException: java/sql/Savepoint
at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:471)
at org.apache.jsp.tasks$jsp._jspService(tasks$jsp.java:128)
at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.ja
va:201)
at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.
java:683)
at
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatch
er.java:431)
at
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher
.java:355)
at
org.apache.jsp.a_0005findex$jsp._jspService(a_0005findex$jsp.java:131)
at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.ja
va:201)
at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
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:243)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:170)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at

Re: Help! Installing SSL Certificate

2003-01-29 Thread Matt Fury
Ahh I see why you were asking me via email.

No I have the keystore file specified. The self-gen
keystore works fine with Tomcat but the purchases SSL
that I've added to the keystore via the keytool docs
does not work. The logs show that Tomcat accepts the
SSL configuration but when I hit it from the browser
it doesn't connect.

-Matt


--- Yakov Belov [EMAIL PROTECTED] wrote:
 Where are you putting the keystore file created
 with a purchased
 certificate? If not sure it's the place where Tomcat
 searches for it, use
 keystoreFile parameter in the SSL Connector area in
 server.xml.
 
 Good Luck,
 Yakov
 - Original Message -
 From: Matt Fury [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, January 29, 2003 6:45 AM
 Subject: Help! Installing SSL Certificate
 
 
  Hi All!
 
  I've recently purchased a certificate and am
 having
  problems getting the server to recognize it. I've
  created the keystore using the HOW-TO docs but
 when I
  got the the HTTTS:// Tomcat does not connect. I
 can
  get Tomcat to connect using a self-generated
  certificate but by creating the keystore with the
  certificates purchased I cannot get Tomcat to take
  requests.
 
  Any ideas? Thanks!
 
  -Matt
 
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 

-
 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]




Re: Help! Installing SSL Certificate

2003-01-28 Thread Yakov Belov
Where are you putting the keystore file created with a purchased
certificate? If not sure it's the place where Tomcat searches for it, use
keystoreFile parameter in the SSL Connector area in server.xml.

Good Luck,
Yakov
- Original Message -
From: Matt Fury [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 6:45 AM
Subject: Help! Installing SSL Certificate


 Hi All!

 I've recently purchased a certificate and am having
 problems getting the server to recognize it. I've
 created the keystore using the HOW-TO docs but when I
 got the the HTTTS:// Tomcat does not connect. I can
 get Tomcat to connect using a self-generated
 certificate but by creating the keystore with the
 certificates purchased I cannot get Tomcat to take
 requests.

 Any ideas? Thanks!

 -Matt

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


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




RE: Help: Installing Tomcat 4.0.4

2002-07-29 Thread Sergei Batiuk

As far as I know, -Djava.endorsed.dirs=... works only with jdk1.4, but you
seem to be using jdk 1.3.1_03.

HTH

Sincerely,
Sergei Batiuk.

IT department
Damen Shipyards Okean
+380 512 293146
+380 512 293329


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 9:46 AM
To: [EMAIL PROTECTED]
Subject: Help: Installing Tomcat 4.0.4


Hi,

I am new to Jsp and Java stuff.  I installed Tomcat 4.0.4 following
instructions http://jakarta.apache.org/tomcat/tomcat-4.0-doc/RUNNING.txt

When I try to startup tomcat, I get the following:
C:\jakarta-tomcat-4.0.4\binstartup
The JAVA_HOME environment variable is not defined correctly
This environment variable is needed to run this program
The system cannot find the batch label specified - end
Using CATALINA_BASE:   ..
Using CATALINA_HOME:   ..
Using CATALINA_TMPDIR: ..\temp
Using JAVA_HOME:   c:\jdk1.3.1_03\bin;
The system cannot find the file -Djava.endorsed.dirs=.

I have tried setting up environment variables for JAVA_HOME and
CATALINA_HOME but still get same error.
Please help.  Thanks in advance.

Manisha





--
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]




Re: Help: Installing Tomcat 4.0.4

2002-07-29 Thread miguel_sas


Try
c:\jdk1.3.1_03
or
c:\jdk1.3.1_03\jre
because Tomcat uses %JAVA_HOME%\lib and %JAVA_HOME%\bin
just take a look at %CATALINA_HOME%\bin\setclasspath.bat

Regards
Miquel Sas


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




Re: Help: Installing Tomcat 4.0.4

2002-07-29 Thread rsequeira


JAVA_HOME is set incorrectly. It should be:
JAVA_HOME=c:\jdk1.3.1_03

RS



   

  Manisha_Toor@Dell

  .com To:   
[EMAIL PROTECTED]
   cc: 

  07/29/02 01:46 AMSubject:  Help: Installing Tomcat 4.0.4 

  Please respond to

  Tomcat Users

  List

   

   





Hi,

I am new to Jsp and Java stuff.  I installed Tomcat 4.0.4 following
instructions http://jakarta.apache.org/tomcat/tomcat-4.0-doc/RUNNING.txt

When I try to startup tomcat, I get the following:
C:\jakarta-tomcat-4.0.4\binstartup
The JAVA_HOME environment variable is not defined correctly
This environment variable is needed to run this program
The system cannot find the batch label specified - end
Using CATALINA_BASE:   ..
Using CATALINA_HOME:   ..
Using CATALINA_TMPDIR: ..\temp
Using JAVA_HOME:   c:\jdk1.3.1_03\bin;
The system cannot find the file -Djava.endorsed.dirs=.

I have tried setting up environment variables for JAVA_HOME and
CATALINA_HOME but still get same error.
Please help.  Thanks in advance.

Manisha





--
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]




RE: Help Installing Tomcat on Win95

2001-08-20 Thread Sheila Ratnam

Dmitri,

Yes, this is weird!
If I try
jar -tf servlet.jar
from inside the lib folder I get a long list of classes. But if I try the 
same from c:\ the system can't locate the servlet file.

So I placed the HelloWorld.java inside the lib folder (where the servlet.jar 
IS,) and I still get the error saying package.servlet does not exist.

What else should I do?
Sheila



From: Dmitri Colebatch [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Help Installing Tomcat on Win95
Date: Mon, 20 Aug 2001 15:10:42 +1000

On Mon, 20 Aug 2001, Sheila Ratnam wrote:
  I tried your method, but it didn't work. So it doesn't seem to be the 
long
  name problem. I also checked and confirmed that there is no other 
version of
  servlet.jar on my pc.
 
  Infact I am surprised that (both the servlet  jsp) examples at
  http://localhost:8080/ work perfectly!
  Could there be any other reason for package javax not being found?

weird well, I'm assuming that servlet.jar is in tact I suppose you
could check that though (jar -tf servlet.jar).  we're looking at real
weirdness here, I think that in reality there's probably something simple
that we've missed... sorry (o:

cheesr
dim


 
  Sheila
 
 
 
  From: Sheila Ratnam [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: RE: Help Installing Tomcat on Win95
  Date: Mon, 20 Aug 2001 00:04:36 +
  
  Rob  Pier, thanks for the help in getting my Tomcat server going.
  
  Now it's my first servlet that's not compiling! I have set the 
CLASSPATH to
  c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar
  file
  is. But when I try to compile the servlet, the error message says
  javax.servlet package does not exist
  
  What else could be the problem?
  
  TIA,
  Sheila
  
  
  From: Rob S. [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: RE: Help Installing Tomcat on Win95
  Date: Sat, 18 Aug 2001 08:16:26 -0400
  
  AH
  
  You're trying to request your server through the WarpConnector port 
and
  not
  the HTTP port?  This was what a lot of people used to do, try and make
  requests to Tomcat 3.x through the AJP port 8007 (by default).  Pier,
  maybe
  the default WarpConnector should be at 8007? (assuming it's 8008)
  
  - r
  
-Original Message-
From: Sheila Ratnam [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 17, 2001 10:28 PM
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
   
   
Pier,
I did try using the ip address instead of 'localhost', but it
didn't work.
Probably the error is what the log shows?
   
Sheila
   
   
   
From: Sheila Ratnam [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
Date: Sat, 18 Aug 2001 02:21:22 +

Rob, Pier,

I noticed the following error logged in apache.log file.

2001-08-17 20:42:46 
[org.apache.catalina.connector.warp.WarpConnector]
Error
accepting requests
java.net.SocketException: socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
at java.net.ServerSocket.implAccept(ServerSocket.java:246)
at java.net.ServerSocket.accept(ServerSocket.java:225)
at
org.apache.catalina.connector.warp.WarpConnector.run(WarpConnecto
r.java:554)
at java.lang.Thread.run(Thread.java:484)

As you correctly expected, the CATALINA_HOME_Log file is empty.
How can I correct this?

No problem with 'hitting' as long as I get this to work:)

Thanks,
Sheila



From: Pier P. Fumagalli [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
Date: Sat, 18 Aug 2001 02:52:14 +0100

Rob S. at [EMAIL PROTECTED] wrote:

  I should add that I tried changing the port number in the
  server.xml
file
  inside conf folder as mentioned in the RUNNING.txt. Also 
checked
  and
made
  sure that the browser is not trying to access a proxy server. 
But
  it hasn't
  worked.
  Thanks,
  Sheila
 
  ?!  This brings a joyous tear to my eye! =~)  Someone has read 
the
  documentation and acted upon it.  Sheila, you've made my
day!  So your
  Tomcat has started at 8080 and http://localhost:8080/ doesn't 
do
  the
  trick...  Did you check the log files ($CATALINA_HOME/logs) 
for
  any
activity
  when you make a request?  If nothing at all appears in those
  files,
  I
don't
  think the request is getting there.

Another good test on Windows is to try to send your request to
http://127.0.0.1:8080/ as sometimes Windows forgets about the 
meaning
  of
localhost (I believe it was EXACTLY Win95, and was later fixed
on Win98).

And, BTW, Rob

Re: Help Installing Tomcat on Win95

2001-08-20 Thread Rob S.

 from inside the lib folder I get a long list of classes. But if I try the
 same from c:\ the system can't locate the servlet file.

Righto, it's showing you the contents of the servlet.jar file in that directory.  The 
servlet.jar file *probably* doesn't exit in c:\ so it fails.
 
 So I placed the HelloWorld.java inside the lib folder (where the
 servlet.jar IS,) and I still get the error saying package.servlet does not
 exist.

Need to compile it, and place it in the /WEB-INF/classes directory.

- r




RE: Help Installing Tomcat on Win95

2001-08-20 Thread Dmitri Colebatch

jar takes a filename as an argument, with no reliance on environment
variables... so what you've described makes perfect sense.  

I'm sure this is something _really_ simple... you can confirm that 

echo %CLASSPATH%

returns a pathset that contains the servlet.jar?

cheesr
dim

On Mon, 20 Aug 2001, Sheila Ratnam wrote:

 Dmitri,
 
 Yes, this is weird!
 If I try
 jar -tf servlet.jar
 from inside the lib folder I get a long list of classes. But if I try the 
 same from c:\ the system can't locate the servlet file.
 
 So I placed the HelloWorld.java inside the lib folder (where the servlet.jar 
 IS,) and I still get the error saying package.servlet does not exist.
 
 What else should I do?
 Sheila
 
 
 
 From: Dmitri Colebatch [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: RE: Help Installing Tomcat on Win95
 Date: Mon, 20 Aug 2001 15:10:42 +1000
 
 On Mon, 20 Aug 2001, Sheila Ratnam wrote:
   I tried your method, but it didn't work. So it doesn't seem to be the 
 long
   name problem. I also checked and confirmed that there is no other 
 version of
   servlet.jar on my pc.
  
   Infact I am surprised that (both the servlet  jsp) examples at
   http://localhost:8080/ work perfectly!
   Could there be any other reason for package javax not being found?
 
 weird well, I'm assuming that servlet.jar is in tact I suppose you
 could check that though (jar -tf servlet.jar).  we're looking at real
 weirdness here, I think that in reality there's probably something simple
 that we've missed... sorry (o:
 
 cheesr
 dim
 
 
  
   Sheila
  
  
  
   From: Sheila Ratnam [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: RE: Help Installing Tomcat on Win95
   Date: Mon, 20 Aug 2001 00:04:36 +
   
   Rob  Pier, thanks for the help in getting my Tomcat server going.
   
   Now it's my first servlet that's not compiling! I have set the 
 CLASSPATH to
   c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar
   file
   is. But when I try to compile the servlet, the error message says
   javax.servlet package does not exist
   
   What else could be the problem?
   
   TIA,
   Sheila
   
   
   From: Rob S. [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: RE: Help Installing Tomcat on Win95
   Date: Sat, 18 Aug 2001 08:16:26 -0400
   
   AH
   
   You're trying to request your server through the WarpConnector port 
 and
   not
   the HTTP port?  This was what a lot of people used to do, try and make
   requests to Tomcat 3.x through the AJP port 8007 (by default).  Pier,
   maybe
   the default WarpConnector should be at 8007? (assuming it's 8008)
   
   - r
   
 -Original Message-
 From: Sheila Ratnam [mailto:[EMAIL PROTECTED]]
 Sent: Friday, August 17, 2001 10:28 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Help Installing Tomcat on Win95


 Pier,
 I did try using the ip address instead of 'localhost', but it
 didn't work.
 Probably the error is what the log shows?

 Sheila



 From: Sheila Ratnam [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: Help Installing Tomcat on Win95
 Date: Sat, 18 Aug 2001 02:21:22 +
 
 Rob, Pier,
 
 I noticed the following error logged in apache.log file.
 
 2001-08-17 20:42:46 
 [org.apache.catalina.connector.warp.WarpConnector]
 Error
 accepting requests
 java.net.SocketException: socket closed
 at java.net.PlainSocketImpl.socketAccept(Native Method)
 at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
 at java.net.ServerSocket.implAccept(ServerSocket.java:246)
 at java.net.ServerSocket.accept(ServerSocket.java:225)
 at
 org.apache.catalina.connector.warp.WarpConnector.run(WarpConnecto
 r.java:554)
 at java.lang.Thread.run(Thread.java:484)
 
 As you correctly expected, the CATALINA_HOME_Log file is empty.
 How can I correct this?
 
 No problem with 'hitting' as long as I get this to work:)
 
 Thanks,
 Sheila
 
 
 
 From: Pier P. Fumagalli [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: Help Installing Tomcat on Win95
 Date: Sat, 18 Aug 2001 02:52:14 +0100
 
 Rob S. at [EMAIL PROTECTED] wrote:
 
   I should add that I tried changing the port number in the
   server.xml
 file
   inside conf folder as mentioned in the RUNNING.txt. Also 
 checked
   and
 made
   sure that the browser is not trying to access a proxy server. 
 But
   it hasn't
   worked.
   Thanks,
   Sheila
  
   ?!  This brings a joyous tear to my eye! =~)  Someone has read 
 the
   documentation and acted upon it.  Sheila, you've made my
 day!  So your
   Tomcat has started at 8080 and http://localhost:8080/ doesn't

RE: Help Installing Tomcat on Win95

2001-08-19 Thread Sheila Ratnam

Rob  Pier, thanks for the help in getting my Tomcat server going.

Now it's my first servlet that's not compiling! I have set the CLASSPATH to 
c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar file 
is. But when I try to compile the servlet, the error message says 
javax.servlet package does not exist

What else could be the problem?

TIA,
Sheila


From: Rob S. [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Help Installing Tomcat on Win95
Date: Sat, 18 Aug 2001 08:16:26 -0400

AH

You're trying to request your server through the WarpConnector port and not
the HTTP port?  This was what a lot of people used to do, try and make
requests to Tomcat 3.x through the AJP port 8007 (by default).  Pier, maybe
the default WarpConnector should be at 8007? (assuming it's 8008)

- r

  -Original Message-
  From: Sheila Ratnam [mailto:[EMAIL PROTECTED]]
  Sent: Friday, August 17, 2001 10:28 PM
  To: [EMAIL PROTECTED]
  Subject: Re: Help Installing Tomcat on Win95
 
 
  Pier,
  I did try using the ip address instead of 'localhost', but it
  didn't work.
  Probably the error is what the log shows?
 
  Sheila
 
 
 
  From: Sheila Ratnam [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: Help Installing Tomcat on Win95
  Date: Sat, 18 Aug 2001 02:21:22 +
  
  Rob, Pier,
  
  I noticed the following error logged in apache.log file.
  
  2001-08-17 20:42:46 [org.apache.catalina.connector.warp.WarpConnector]
  Error
  accepting requests
  java.net.SocketException: socket closed
  at java.net.PlainSocketImpl.socketAccept(Native Method)
  at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
  at java.net.ServerSocket.implAccept(ServerSocket.java:246)
  at java.net.ServerSocket.accept(ServerSocket.java:225)
  at
  org.apache.catalina.connector.warp.WarpConnector.run(WarpConnecto
  r.java:554)
  at java.lang.Thread.run(Thread.java:484)
  
  As you correctly expected, the CATALINA_HOME_Log file is empty.
  How can I correct this?
  
  No problem with 'hitting' as long as I get this to work:)
  
  Thanks,
  Sheila
  
  
  
  From: Pier P. Fumagalli [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: Help Installing Tomcat on Win95
  Date: Sat, 18 Aug 2001 02:52:14 +0100
  
  Rob S. at [EMAIL PROTECTED] wrote:
  
I should add that I tried changing the port number in the 
server.xml
  file
inside conf folder as mentioned in the RUNNING.txt. Also checked 
and
  made
sure that the browser is not trying to access a proxy server. But
it hasn't
worked.
Thanks,
Sheila
   
?!  This brings a joyous tear to my eye! =~)  Someone has read the
documentation and acted upon it.  Sheila, you've made my
  day!  So your
Tomcat has started at 8080 and http://localhost:8080/ doesn't do 
the
trick...  Did you check the log files ($CATALINA_HOME/logs) for any
  activity
when you make a request?  If nothing at all appears in those files, 
I
  don't
think the request is getting there.
  
  Another good test on Windows is to try to send your request to
  http://127.0.0.1:8080/ as sometimes Windows forgets about the meaning 
of
  localhost (I believe it was EXACTLY Win95, and was later fixed
  on Win98).
  
  And, BTW, Rob, stop trying to hit on girls on the mailing list
  :) :) :) :)
  I tried it in the past, doesn't work! :) :) :) :)
  
   Pier
  
  
  
  _
  Get your FREE download of MSN Explorer at
http://explorer.msn.com/intl.asp
 


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




RE: Help Installing Tomcat on Win95

2001-08-19 Thread Dmitri Colebatch

I'm assuming its a type.. but you have
c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar rather than
c:\jakarta-tomcat-4.0-b7\common\lib\servlet.jar - from memory that will be
resolved from the current c dir... so may not even be finding servlet.jar

then again - if its just an email typo weird...

cheers
dim

On Mon, 20 Aug 2001, Sheila Ratnam wrote:

 Rob  Pier, thanks for the help in getting my Tomcat server going.
 
 Now it's my first servlet that's not compiling! I have set the CLASSPATH to 
 c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar file 
 is. But when I try to compile the servlet, the error message says 
 javax.servlet package does not exist
 
 What else could be the problem?
 
 TIA,
 Sheila
 
 
 From: Rob S. [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: RE: Help Installing Tomcat on Win95
 Date: Sat, 18 Aug 2001 08:16:26 -0400
 
 AH
 
 You're trying to request your server through the WarpConnector port and not
 the HTTP port?  This was what a lot of people used to do, try and make
 requests to Tomcat 3.x through the AJP port 8007 (by default).  Pier, maybe
 the default WarpConnector should be at 8007? (assuming it's 8008)
 
 - r
 
   -Original Message-
   From: Sheila Ratnam [mailto:[EMAIL PROTECTED]]
   Sent: Friday, August 17, 2001 10:28 PM
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
  
  
   Pier,
   I did try using the ip address instead of 'localhost', but it
   didn't work.
   Probably the error is what the log shows?
  
   Sheila
  
  
  
   From: Sheila Ratnam [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
   Date: Sat, 18 Aug 2001 02:21:22 +
   
   Rob, Pier,
   
   I noticed the following error logged in apache.log file.
   
   2001-08-17 20:42:46 [org.apache.catalina.connector.warp.WarpConnector]
   Error
   accepting requests
   java.net.SocketException: socket closed
   at java.net.PlainSocketImpl.socketAccept(Native Method)
   at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
   at java.net.ServerSocket.implAccept(ServerSocket.java:246)
   at java.net.ServerSocket.accept(ServerSocket.java:225)
   at
   org.apache.catalina.connector.warp.WarpConnector.run(WarpConnecto
   r.java:554)
   at java.lang.Thread.run(Thread.java:484)
   
   As you correctly expected, the CATALINA_HOME_Log file is empty.
   How can I correct this?
   
   No problem with 'hitting' as long as I get this to work:)
   
   Thanks,
   Sheila
   
   
   
   From: Pier P. Fumagalli [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
   Date: Sat, 18 Aug 2001 02:52:14 +0100
   
   Rob S. at [EMAIL PROTECTED] wrote:
   
 I should add that I tried changing the port number in the 
 server.xml
   file
 inside conf folder as mentioned in the RUNNING.txt. Also checked 
 and
   made
 sure that the browser is not trying to access a proxy server. But
 it hasn't
 worked.
 Thanks,
 Sheila

 ?!  This brings a joyous tear to my eye! =~)  Someone has read the
 documentation and acted upon it.  Sheila, you've made my
   day!  So your
 Tomcat has started at 8080 and http://localhost:8080/ doesn't do 
 the
 trick...  Did you check the log files ($CATALINA_HOME/logs) for any
   activity
 when you make a request?  If nothing at all appears in those files, 
 I
   don't
 think the request is getting there.
   
   Another good test on Windows is to try to send your request to
   http://127.0.0.1:8080/ as sometimes Windows forgets about the meaning 
 of
   localhost (I believe it was EXACTLY Win95, and was later fixed
   on Win98).
   
   And, BTW, Rob, stop trying to hit on girls on the mailing list
   :) :) :) :)
   I tried it in the past, doesn't work! :) :) :) :)
   
Pier
   
   
   
   _
   Get your FREE download of MSN Explorer at
 http://explorer.msn.com/intl.asp
  
 
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 
 
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 




RE: Help Installing Tomcat on Win95

2001-08-19 Thread Sheila Ratnam

Sorry, it was a typo in my email (unfortunately!). I do have the correct 
path specified. But thanks for your sharp eyes :).

Do I have to place the servlet.java file in any specific directory to 
compile it? I have placed it inside a directory under ROOT, and from dos 
prompt made it the current directory and am trying to compile. Is that 
correct?

I also tried compiling it in another directory, outside the tomcat 
structure, where I usually compile other java projects. But it gives the 
same error.

Sheila


From: Dmitri Colebatch [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Help Installing Tomcat on Win95
Date: Mon, 20 Aug 2001 10:41:27 +1000

I'm assuming its a type.. but you have
c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar rather than
c:\jakarta-tomcat-4.0-b7\common\lib\servlet.jar - from memory that will be
resolved from the current c dir... so may not even be finding servlet.jar

then again - if its just an email typo weird...

cheers
dim

On Mon, 20 Aug 2001, Sheila Ratnam wrote:

  Rob  Pier, thanks for the help in getting my Tomcat server going.
 
  Now it's my first servlet that's not compiling! I have set the CLASSPATH 
to
  c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar 
file
  is. But when I try to compile the servlet, the error message says
  javax.servlet package does not exist
 
  What else could be the problem?
 
  TIA,
  Sheila
 



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




RE: Help Installing Tomcat on Win95

2001-08-19 Thread Dmitri Colebatch

On Mon, 20 Aug 2001, Sheila Ratnam wrote:
 Do I have to place the servlet.java file in any specific directory to 
 compile it? I have placed it inside a directory under ROOT, and from dos 
 prompt made it the current directory and am trying to compile. Is that 
 correct?
Ok - shouldn't make any difference where the source file is (I assume that
by servlet.java you mean the servlet you are trying to compile).

you should have something like:

SET CLASSPATH=c:\jakarta-tomcat-4.0-b7\common\lib\servlet.jar
javac servlet.java

the only other thing I can think of is windows and long filenames might be
having arguments... a windows person might be better equipped to answer
that... 

 I also tried compiling it in another directory, outside the tomcat 
 structure, where I usually compile other java projects. But it gives the 
 same error.
with the other projects... do you have any long filenames?

I suppose that getting _really_ paranoid, something like:

cd \
C:\ mkdir test
C:\ cd test
C:\test\ copy c:\jakarta-tomcat-4.0-b7\common\lib\servlet.jar .
C:\test\ copy _your_servlet_ .
C:\test\ SET CLASSPATH=servlet.jar
C:\test\ javac _your_servlet_

should work mind you thats _very_ ridiculous and over the top, but if
the problem is the long filenames, then it will get around it

hth
cheers
dim


 
 Sheila
 
 
 From: Dmitri Colebatch [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: RE: Help Installing Tomcat on Win95
 Date: Mon, 20 Aug 2001 10:41:27 +1000
 
 I'm assuming its a type.. but you have
 c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar rather than
 c:\jakarta-tomcat-4.0-b7\common\lib\servlet.jar - from memory that will be
 resolved from the current c dir... so may not even be finding servlet.jar
 
 then again - if its just an email typo weird...
 
 cheers
 dim
 
 On Mon, 20 Aug 2001, Sheila Ratnam wrote:
 
   Rob  Pier, thanks for the help in getting my Tomcat server going.
  
   Now it's my first servlet that's not compiling! I have set the CLASSPATH 
 to
   c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar 
 file
   is. But when I try to compile the servlet, the error message says
   javax.servlet package does not exist
  
   What else could be the problem?
  
   TIA,
   Sheila
  
 
 
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 




RE: Help Installing Tomcat on Win95

2001-08-19 Thread Sheila Ratnam

Dmitri,

I tried your method, but it didn't work. So it doesn't seem to be the long 
name problem. I also checked and confirmed that there is no other version of 
servlet.jar on my pc.

Infact I am surprised that (both the servlet  jsp) examples at 
http://localhost:8080/ work perfectly!
Could there be any other reason for package javax not being found?

Sheila



From: Sheila Ratnam [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Help Installing Tomcat on Win95
Date: Mon, 20 Aug 2001 00:04:36 +

Rob  Pier, thanks for the help in getting my Tomcat server going.

Now it's my first servlet that's not compiling! I have set the CLASSPATH to
c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar 
file
is. But when I try to compile the servlet, the error message says
javax.servlet package does not exist

What else could be the problem?

TIA,
Sheila


From: Rob S. [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Help Installing Tomcat on Win95
Date: Sat, 18 Aug 2001 08:16:26 -0400

AH

You're trying to request your server through the WarpConnector port and 
not
the HTTP port?  This was what a lot of people used to do, try and make
requests to Tomcat 3.x through the AJP port 8007 (by default).  Pier, 
maybe
the default WarpConnector should be at 8007? (assuming it's 8008)

- r

  -Original Message-
  From: Sheila Ratnam [mailto:[EMAIL PROTECTED]]
  Sent: Friday, August 17, 2001 10:28 PM
  To: [EMAIL PROTECTED]
  Subject: Re: Help Installing Tomcat on Win95
 
 
  Pier,
  I did try using the ip address instead of 'localhost', but it
  didn't work.
  Probably the error is what the log shows?
 
  Sheila
 
 
 
  From: Sheila Ratnam [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: Help Installing Tomcat on Win95
  Date: Sat, 18 Aug 2001 02:21:22 +
  
  Rob, Pier,
  
  I noticed the following error logged in apache.log file.
  
  2001-08-17 20:42:46 [org.apache.catalina.connector.warp.WarpConnector]
  Error
  accepting requests
  java.net.SocketException: socket closed
  at java.net.PlainSocketImpl.socketAccept(Native Method)
  at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
  at java.net.ServerSocket.implAccept(ServerSocket.java:246)
  at java.net.ServerSocket.accept(ServerSocket.java:225)
  at
  org.apache.catalina.connector.warp.WarpConnector.run(WarpConnecto
  r.java:554)
  at java.lang.Thread.run(Thread.java:484)
  
  As you correctly expected, the CATALINA_HOME_Log file is empty.
  How can I correct this?
  
  No problem with 'hitting' as long as I get this to work:)
  
  Thanks,
  Sheila
  
  
  
  From: Pier P. Fumagalli [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: Help Installing Tomcat on Win95
  Date: Sat, 18 Aug 2001 02:52:14 +0100
  
  Rob S. at [EMAIL PROTECTED] wrote:
  
I should add that I tried changing the port number in the
server.xml
  file
inside conf folder as mentioned in the RUNNING.txt. Also checked
and
  made
sure that the browser is not trying to access a proxy server. But
it hasn't
worked.
Thanks,
Sheila
   
?!  This brings a joyous tear to my eye! =~)  Someone has read the
documentation and acted upon it.  Sheila, you've made my
  day!  So your
Tomcat has started at 8080 and http://localhost:8080/ doesn't do
the
trick...  Did you check the log files ($CATALINA_HOME/logs) for 
any
  activity
when you make a request?  If nothing at all appears in those 
files,
I
  don't
think the request is getting there.
  
  Another good test on Windows is to try to send your request to
  http://127.0.0.1:8080/ as sometimes Windows forgets about the meaning
of
  localhost (I believe it was EXACTLY Win95, and was later fixed
  on Win98).
  
  And, BTW, Rob, stop trying to hit on girls on the mailing list
  :) :) :) :)
  I tried it in the past, doesn't work! :) :) :) :)
  
   Pier
  
  
  
  _
  Get your FREE download of MSN Explorer at
http://explorer.msn.com/intl.asp
 


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




RE: Help Installing Tomcat on Win95

2001-08-19 Thread Artigas, Ricardo Y.

Isn't c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; supposed to be:
c:\jakarta-tomcat-4.0-b7\common\lib\servlet.jar;?
HTH.


:~)
Ricky Y. Artigas
Analyst/Programmer /
Database Administrator
Information Technology Division
Easycall Communications Phils., Inc.
 ---
 IMPORTANT NOTICE: 
  
 This message (and any attachment hereto) may contain privileged and/or
 confidential information specific to EasyCall. If you are not the intended
 addressee indicated in this message, you may not copy or disseminate this
 message (or any attachment hereto) to anyone. Instead, please destroy this
 message (and any attachment hereto), and kindly notify the sender by reply
 email. Any information in this message (and any attachment thereto) that
 do not relate to the official business of EasyCall shall be understood as
 neither given nor endorsed by the company.
 
 
 -Original Message-
 From: Sheila Ratnam [SMTP:[EMAIL PROTECTED]]
 Sent: Monday, August 20, 2001 12:48 PM
 To:   [EMAIL PROTECTED]
 Subject:  RE: Help Installing Tomcat on Win95
 
 Dmitri,
 
 I tried your method, but it didn't work. So it doesn't seem to be the long
 
 name problem. I also checked and confirmed that there is no other version
 of 
 servlet.jar on my pc.
 
 Infact I am surprised that (both the servlet  jsp) examples at 
 http://localhost:8080/ work perfectly!
 Could there be any other reason for package javax not being found?
 
 Sheila
 
 
 
 From: Sheila Ratnam [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: RE: Help Installing Tomcat on Win95
 Date: Mon, 20 Aug 2001 00:04:36 +
 
 Rob  Pier, thanks for the help in getting my Tomcat server going.
 
 Now it's my first servlet that's not compiling! I have set the CLASSPATH
 to
 c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar 
 file
 is. But when I try to compile the servlet, the error message says
 javax.servlet package does not exist
 
 What else could be the problem?
 
 TIA,
 Sheila
 
 
 From: Rob S. [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: RE: Help Installing Tomcat on Win95
 Date: Sat, 18 Aug 2001 08:16:26 -0400
 
 AH
 
 You're trying to request your server through the WarpConnector port and 
 not
 the HTTP port?  This was what a lot of people used to do, try and make
 requests to Tomcat 3.x through the AJP port 8007 (by default).  Pier, 
 maybe
 the default WarpConnector should be at 8007? (assuming it's 8008)
 
 - r
 
   -Original Message-
   From: Sheila Ratnam [mailto:[EMAIL PROTECTED]]
   Sent: Friday, August 17, 2001 10:28 PM
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
  
  
   Pier,
   I did try using the ip address instead of 'localhost', but it
   didn't work.
   Probably the error is what the log shows?
  
   Sheila
  
  
  
   From: Sheila Ratnam [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
   Date: Sat, 18 Aug 2001 02:21:22 +
   
   Rob, Pier,
   
   I noticed the following error logged in apache.log file.
   
   2001-08-17 20:42:46
 [org.apache.catalina.connector.warp.WarpConnector]
   Error
   accepting requests
   java.net.SocketException: socket closed
   at java.net.PlainSocketImpl.socketAccept(Native Method)
   at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
   at java.net.ServerSocket.implAccept(ServerSocket.java:246)
   at java.net.ServerSocket.accept(ServerSocket.java:225)
   at
   org.apache.catalina.connector.warp.WarpConnector.run(WarpConnecto
   r.java:554)
   at java.lang.Thread.run(Thread.java:484)
   
   As you correctly expected, the CATALINA_HOME_Log file is empty.
   How can I correct this?
   
   No problem with 'hitting' as long as I get this to work:)
   
   Thanks,
   Sheila
   
   
   
   From: Pier P. Fumagalli [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
   Date: Sat, 18 Aug 2001 02:52:14 +0100
   
   Rob S. at [EMAIL PROTECTED] wrote:
   
 I should add that I tried changing the port number in the
 server.xml
   file
 inside conf folder as mentioned in the RUNNING.txt. Also
 checked
 and
   made
 sure that the browser is not trying to access a proxy server.
 But
 it hasn't
 worked.
 Thanks,
 Sheila

 ?!  This brings a joyous tear to my eye! =~)  Someone has read
 the
 documentation and acted upon it.  Sheila, you've made my
   day!  So your
 Tomcat has started at 8080 and http://localhost:8080/ doesn't do
 the
 trick...  Did you check the log files ($CATALINA_HOME/logs) for 
 any
   activity
 when you make a request?  If nothing at all appears in those 
 files,
 I
   don't
 think the request is getting there.
   
   Another good test on Windows is to try to send your request to
   http://127.0.0.1:8080/ as sometimes Windows forgets about

RE: Help Installing Tomcat on Win95

2001-08-19 Thread Dmitri Colebatch

On Mon, 20 Aug 2001, Sheila Ratnam wrote:
 I tried your method, but it didn't work. So it doesn't seem to be the long 
 name problem. I also checked and confirmed that there is no other version of 
 servlet.jar on my pc.
 
 Infact I am surprised that (both the servlet  jsp) examples at 
 http://localhost:8080/ work perfectly!
 Could there be any other reason for package javax not being found?

weird well, I'm assuming that servlet.jar is in tact I suppose you
could check that though (jar -tf servlet.jar).  we're looking at real
weirdness here, I think that in reality there's probably something simple
that we've missed... sorry (o:

cheesr
dim


 
 Sheila
 
 
 
 From: Sheila Ratnam [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: RE: Help Installing Tomcat on Win95
 Date: Mon, 20 Aug 2001 00:04:36 +
 
 Rob  Pier, thanks for the help in getting my Tomcat server going.
 
 Now it's my first servlet that's not compiling! I have set the CLASSPATH to
 c:jakarta-tomcat-4.0-b7\common\lib\servlet.jar; where the servlet.jar 
 file
 is. But when I try to compile the servlet, the error message says
 javax.servlet package does not exist
 
 What else could be the problem?
 
 TIA,
 Sheila
 
 
 From: Rob S. [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: RE: Help Installing Tomcat on Win95
 Date: Sat, 18 Aug 2001 08:16:26 -0400
 
 AH
 
 You're trying to request your server through the WarpConnector port and 
 not
 the HTTP port?  This was what a lot of people used to do, try and make
 requests to Tomcat 3.x through the AJP port 8007 (by default).  Pier, 
 maybe
 the default WarpConnector should be at 8007? (assuming it's 8008)
 
 - r
 
   -Original Message-
   From: Sheila Ratnam [mailto:[EMAIL PROTECTED]]
   Sent: Friday, August 17, 2001 10:28 PM
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
  
  
   Pier,
   I did try using the ip address instead of 'localhost', but it
   didn't work.
   Probably the error is what the log shows?
  
   Sheila
  
  
  
   From: Sheila Ratnam [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
   Date: Sat, 18 Aug 2001 02:21:22 +
   
   Rob, Pier,
   
   I noticed the following error logged in apache.log file.
   
   2001-08-17 20:42:46 [org.apache.catalina.connector.warp.WarpConnector]
   Error
   accepting requests
   java.net.SocketException: socket closed
   at java.net.PlainSocketImpl.socketAccept(Native Method)
   at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
   at java.net.ServerSocket.implAccept(ServerSocket.java:246)
   at java.net.ServerSocket.accept(ServerSocket.java:225)
   at
   org.apache.catalina.connector.warp.WarpConnector.run(WarpConnecto
   r.java:554)
   at java.lang.Thread.run(Thread.java:484)
   
   As you correctly expected, the CATALINA_HOME_Log file is empty.
   How can I correct this?
   
   No problem with 'hitting' as long as I get this to work:)
   
   Thanks,
   Sheila
   
   
   
   From: Pier P. Fumagalli [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: Re: Help Installing Tomcat on Win95
   Date: Sat, 18 Aug 2001 02:52:14 +0100
   
   Rob S. at [EMAIL PROTECTED] wrote:
   
 I should add that I tried changing the port number in the
 server.xml
   file
 inside conf folder as mentioned in the RUNNING.txt. Also checked
 and
   made
 sure that the browser is not trying to access a proxy server. But
 it hasn't
 worked.
 Thanks,
 Sheila

 ?!  This brings a joyous tear to my eye! =~)  Someone has read the
 documentation and acted upon it.  Sheila, you've made my
   day!  So your
 Tomcat has started at 8080 and http://localhost:8080/ doesn't do
 the
 trick...  Did you check the log files ($CATALINA_HOME/logs) for 
 any
   activity
 when you make a request?  If nothing at all appears in those 
 files,
 I
   don't
 think the request is getting there.
   
   Another good test on Windows is to try to send your request to
   http://127.0.0.1:8080/ as sometimes Windows forgets about the meaning
 of
   localhost (I believe it was EXACTLY Win95, and was later fixed
   on Win98).
   
   And, BTW, Rob, stop trying to hit on girls on the mailing list
   :) :) :) :)
   I tried it in the past, doesn't work! :) :) :) :)
   
Pier
   
   
   
   _
   Get your FREE download of MSN Explorer at
 http://explorer.msn.com/intl.asp
  
 
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 
 
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 
 
 _
 Get your FREE

RE: Help Installing Tomcat on Win95

2001-08-18 Thread Rob S.

 And, BTW, Rob, stop trying to hit on girls on the mailing list :) :) :) :)
 I tried it in the past, doesn't work! :) :) :) :)

Hey, I'm just thrilled when someone positively responds to an RTFM request
without saying, I read it, but it doesn't *exactly* answer the question I
had =)

grumble  See what all of my good-natured attempts at helping get!!  How
come no one accuses me of hitting on guys when I help them? =)

- r




RE: Help Installing Tomcat on Win95

2001-08-18 Thread Rob S.

AH

You're trying to request your server through the WarpConnector port and not
the HTTP port?  This was what a lot of people used to do, try and make
requests to Tomcat 3.x through the AJP port 8007 (by default).  Pier, maybe
the default WarpConnector should be at 8007? (assuming it's 8008)

- r

 -Original Message-
 From: Sheila Ratnam [mailto:[EMAIL PROTECTED]]
 Sent: Friday, August 17, 2001 10:28 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Help Installing Tomcat on Win95


 Pier,
 I did try using the ip address instead of 'localhost', but it
 didn't work.
 Probably the error is what the log shows?

 Sheila



 From: Sheila Ratnam [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: Help Installing Tomcat on Win95
 Date: Sat, 18 Aug 2001 02:21:22 +
 
 Rob, Pier,
 
 I noticed the following error logged in apache.log file.
 
 2001-08-17 20:42:46 [org.apache.catalina.connector.warp.WarpConnector]
 Error
 accepting requests
 java.net.SocketException: socket closed
 at java.net.PlainSocketImpl.socketAccept(Native Method)
 at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
 at java.net.ServerSocket.implAccept(ServerSocket.java:246)
 at java.net.ServerSocket.accept(ServerSocket.java:225)
 at
 org.apache.catalina.connector.warp.WarpConnector.run(WarpConnecto
 r.java:554)
 at java.lang.Thread.run(Thread.java:484)
 
 As you correctly expected, the CATALINA_HOME_Log file is empty.
 How can I correct this?
 
 No problem with 'hitting' as long as I get this to work:)
 
 Thanks,
 Sheila
 
 
 
 From: Pier P. Fumagalli [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: Help Installing Tomcat on Win95
 Date: Sat, 18 Aug 2001 02:52:14 +0100
 
 Rob S. at [EMAIL PROTECTED] wrote:
 
   I should add that I tried changing the port number in the server.xml
 file
   inside conf folder as mentioned in the RUNNING.txt. Also checked and
 made
   sure that the browser is not trying to access a proxy server. But
   it hasn't
   worked.
   Thanks,
   Sheila
  
   ?!  This brings a joyous tear to my eye! =~)  Someone has read the
   documentation and acted upon it.  Sheila, you've made my
 day!  So your
   Tomcat has started at 8080 and http://localhost:8080/ doesn't do the
   trick...  Did you check the log files ($CATALINA_HOME/logs) for any
 activity
   when you make a request?  If nothing at all appears in those files, I
 don't
   think the request is getting there.
 
 Another good test on Windows is to try to send your request to
 http://127.0.0.1:8080/ as sometimes Windows forgets about the meaning of
 localhost (I believe it was EXACTLY Win95, and was later fixed
 on Win98).
 
 And, BTW, Rob, stop trying to hit on girls on the mailing list
 :) :) :) :)
 I tried it in the past, doesn't work! :) :) :) :)
 
  Pier
 
 
 
 _
 Get your FREE download of MSN Explorer at
http://explorer.msn.com/intl.asp



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp





RE: Help Installing Tomcat on Win95

2001-08-18 Thread Rob S.

 Err... That's the log for the Apache service... Not the one we're looking
 for... :) Hrmmm... Are you sure you didn't screw up and typed
 
 http://localhost:8008/ Instead of
 http://localhost:8080/
 
 That's the only thing I can possibly think of...

I should read the threads more carefully before replying =)

- r




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Rob S.

Sheila, Sheila, Shiela... read the RUNNING.txt file in CATALINA_HOME =)

- r

On Fri, 17 Aug 2001 20:16:52 + [EMAIL PROTECTED] wrote:
 Hi all,
 
 I downloaded the b7 version, and installed it in c:\jakarta-tomcat-4.0-b7
 directory. I am using Win95, so edited the Autoexec to set JAVA_HOME and
 CATALINA_HOME to correct values. The autoexec runs and gives correct
 message. But when I run startup in bin, the message is:
 Out of environment space
 Out of environment space
 Using CLASSPATH:
 
 What may be wrong? I have IIS personal server on my pc, which I have shut
 down. But I do not have any other server.
 
 Please help.
 Thanks
 Sheila
 
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp






Re: Help Installing Tomcat on Win95

2001-08-17 Thread Sheila Ratnam

Rob!

It says: Set an environment variable CATALINA_HOME to the path of the 
directory into which you have installed Tomcat 4.0.
I have set it correctly by
SET CATALINA_HOME = c:\c:\jakarta-tomcat-4.0-b7
in the Autoexec.bat.

Am I doing it wrong?
What does the message Out of environment space mean?

Thanks,
Sheila

From: Rob S. [EMAIL PROTECTED]
Reply-To: Rob S. [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
Date: Fri, 17 Aug 2001 13:28:48 PDT

Sheila, Sheila, Shiela... read the RUNNING.txt file in CATALINA_HOME =)

- r

On Fri, 17 Aug 2001 20:16:52 + [EMAIL PROTECTED] wrote:
  Hi all,
 
  I downloaded the b7 version, and installed it in 
c:\jakarta-tomcat-4.0-b7
  directory. I am using Win95, so edited the Autoexec to set JAVA_HOME and
  CATALINA_HOME to correct values. The autoexec runs and gives correct
  message. But when I run startup in bin, the message is:
  Out of environment space
  Out of environment space
  Using CLASSPATH:
 
  What may be wrong? I have IIS personal server on my pc, which I have 
shut
  down. But I do not have any other server.
 
  Please help.
  Thanks
  Sheila
 
 
  _
  Get your FREE download of MSN Explorer at 
http://explorer.msn.com/intl.asp





_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Prasanna Uppaladadium

Sheila,

It simply means that Windows 95 has run out of memory space for creating your
environment variable. You will have to increase the environment space for shell
variables. You can do this by adding 'SHELL=C:\COMMAND.COM /E:1024 /P' to your
config.sys file.

That should fix it. If that doesn't work, set the value after /E to a larger
number.

Prasanna.

Sheila Ratnam wrote:

 Rob!

 It says: Set an environment variable CATALINA_HOME to the path of the
 directory into which you have installed Tomcat 4.0.
 I have set it correctly by
 SET CATALINA_HOME = c:\c:\jakarta-tomcat-4.0-b7
 in the Autoexec.bat.

 Am I doing it wrong?
 What does the message Out of environment space mean?

 Thanks,
 Sheila

 From: Rob S. [EMAIL PROTECTED]
 Reply-To: Rob S. [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: Help Installing Tomcat on Win95
 Date: Fri, 17 Aug 2001 13:28:48 PDT
 
 Sheila, Sheila, Shiela... read the RUNNING.txt file in CATALINA_HOME =)
 
 - r
 
 On Fri, 17 Aug 2001 20:16:52 + [EMAIL PROTECTED] wrote:
   Hi all,
  
   I downloaded the b7 version, and installed it in
 c:\jakarta-tomcat-4.0-b7
   directory. I am using Win95, so edited the Autoexec to set JAVA_HOME and
   CATALINA_HOME to correct values. The autoexec runs and gives correct
   message. But when I run startup in bin, the message is:
   Out of environment space
   Out of environment space
   Using CLASSPATH:
  
   What may be wrong? I have IIS personal server on my pc, which I have
 shut
   down. But I do not have any other server.
  
   Please help.
   Thanks
   Sheila
  
  
   _
   Get your FREE download of MSN Explorer at
 http://explorer.msn.com/intl.asp
 
 
 

 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Sheila Ratnam


Thanks Prasanna,
I have been able to get the Startup work. It brings up two windows. One is 
titled Java and displays:
Starting service Tomcat-Standalone
Apache Tomcat/4.0-b7
Starting service Tomcat-Apache
Apache Tomcat/4.0-b7

The other is titled Finished Startup, and shows the classpath being used. 
But when I try using browser with URL http://localhost:8080/, it's not able 
to display a page.

When I use Shutdown file, it closes the server and the two windows opened 
earlier.

What could be wrong? I have PWS on Win95. Please help.
Thanks,
Sheila



From: Prasanna Uppaladadium [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
Date: Fri, 17 Aug 2001 16:50:32 -0700

Sheila,

It simply means that Windows 95 has run out of memory space for creating 
your
environment variable. You will have to increase the environment space for 
shell
variables. You can do this by adding 'SHELL=C:\COMMAND.COM /E:1024 /P' to 
your
config.sys file.

That should fix it. If that doesn't work, set the value after /E to a 
larger
number.

Prasanna.

Sheila Ratnam wrote:

  Rob!
 
  It says: Set an environment variable CATALINA_HOME to the path of the
  directory into which you have installed Tomcat 4.0.
  I have set it correctly by
  SET CATALINA_HOME = c:\c:\jakarta-tomcat-4.0-b7
  in the Autoexec.bat.
 
  Am I doing it wrong?
  What does the message Out of environment space mean?
 
  Thanks,
  Sheila
 
  From: Rob S. [EMAIL PROTECTED]
  Reply-To: Rob S. [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: Help Installing Tomcat on Win95
  Date: Fri, 17 Aug 2001 13:28:48 PDT
  
  Sheila, Sheila, Shiela... read the RUNNING.txt file in CATALINA_HOME =)
  
  - r
  
  On Fri, 17 Aug 2001 20:16:52 + [EMAIL PROTECTED] 
wrote:
Hi all,
   
I downloaded the b7 version, and installed it in
  c:\jakarta-tomcat-4.0-b7
directory. I am using Win95, so edited the Autoexec to set JAVA_HOME 
and
CATALINA_HOME to correct values. The autoexec runs and gives correct
message. But when I run startup in bin, the message is:
Out of environment space
Out of environment space
Using CLASSPATH:
   
What may be wrong? I have IIS personal server on my pc, which I have
  shut
down. But I do not have any other server.
   
Please help.
Thanks
Sheila
   
   
_
Get your FREE download of MSN Explorer at
  http://explorer.msn.com/intl.asp
  
  
  
 
  _
  Get your FREE download of MSN Explorer at 
http://explorer.msn.com/intl.asp



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Sheila Ratnam

I should add that I tried changing the port number in the server.xml file 
inside conf folder as mentioned in the RUNNING.txt. Also checked and made 
sure that the browser is not trying to access a proxy server. But it hasn't 
worked.
Thanks,
Sheila


Date: Fri, 17 Aug 2001 22:36:30 +


Thanks Prasanna,
I have been able to get the Startup work. It brings up two windows. One is
titled Java and displays:
Starting service Tomcat-Standalone
Apache Tomcat/4.0-b7
Starting service Tomcat-Apache
Apache Tomcat/4.0-b7

The other is titled Finished Startup, and shows the classpath being used.
But when I try using browser with URL http://localhost:8080/, it's not able
to display a page.

When I use Shutdown file, it closes the server and the two windows opened
earlier.

What could be wrong? I have PWS on Win95. Please help.
Thanks,
Sheila



From: Prasanna Uppaladadium [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
Date: Fri, 17 Aug 2001 16:50:32 -0700

Sheila,

It simply means that Windows 95 has run out of memory space for creating
your
environment variable. You will have to increase the environment space for
shell
variables. You can do this by adding 'SHELL=C:\COMMAND.COM /E:1024 /P' to
your
config.sys file.

That should fix it. If that doesn't work, set the value after /E to a
larger
number.

Prasanna.

Sheila Ratnam wrote:

  Rob!
 
  It says: Set an environment variable CATALINA_HOME to the path of the
  directory into which you have installed Tomcat 4.0.
  I have set it correctly by
  SET CATALINA_HOME = c:\c:\jakarta-tomcat-4.0-b7
  in the Autoexec.bat.
 
  Am I doing it wrong?
  What does the message Out of environment space mean?
 
  Thanks,
  Sheila
 
  From: Rob S. [EMAIL PROTECTED]
  Reply-To: Rob S. [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: Help Installing Tomcat on Win95
  Date: Fri, 17 Aug 2001 13:28:48 PDT
  
  Sheila, Sheila, Shiela... read the RUNNING.txt file in CATALINA_HOME 
=)
  
  - r
  
  On Fri, 17 Aug 2001 20:16:52 + [EMAIL PROTECTED]
wrote:
Hi all,
   
I downloaded the b7 version, and installed it in
  c:\jakarta-tomcat-4.0-b7
directory. I am using Win95, so edited the Autoexec to set 
JAVA_HOME
and
CATALINA_HOME to correct values. The autoexec runs and gives 
correct
message. But when I run startup in bin, the message is:
Out of environment space
Out of environment space
Using CLASSPATH:
   
What may be wrong? I have IIS personal server on my pc, which I 
have
  shut
down. But I do not have any other server.
   
Please help.
Thanks
Sheila
   
   
_
Get your FREE download of MSN Explorer at
  http://explorer.msn.com/intl.asp
  
  
  
 
  _
  Get your FREE download of MSN Explorer at
http://explorer.msn.com/intl.asp



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




RE: Help Installing Tomcat on Win95

2001-08-17 Thread Rob S.

 I should add that I tried changing the port number in the server.xml file
 inside conf folder as mentioned in the RUNNING.txt. Also checked and made
 sure that the browser is not trying to access a proxy server. But
 it hasn't
 worked.
 Thanks,
 Sheila

?!  This brings a joyous tear to my eye! =~)  Someone has read the
documentation and acted upon it.  Sheila, you've made my day!  So your
Tomcat has started at 8080 and http://localhost:8080/ doesn't do the
trick...  Did you check the log files ($CATALINA_HOME/logs) for any activity
when you make a request?  If nothing at all appears in those files, I don't
think the request is getting there.

- r




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Pier P. Fumagalli

Rob S. at [EMAIL PROTECTED] wrote:

 I should add that I tried changing the port number in the server.xml file
 inside conf folder as mentioned in the RUNNING.txt. Also checked and made
 sure that the browser is not trying to access a proxy server. But
 it hasn't
 worked.
 Thanks,
 Sheila
 
 ?!  This brings a joyous tear to my eye! =~)  Someone has read the
 documentation and acted upon it.  Sheila, you've made my day!  So your
 Tomcat has started at 8080 and http://localhost:8080/ doesn't do the
 trick...  Did you check the log files ($CATALINA_HOME/logs) for any activity
 when you make a request?  If nothing at all appears in those files, I don't
 think the request is getting there.

Another good test on Windows is to try to send your request to
http://127.0.0.1:8080/ as sometimes Windows forgets about the meaning of
localhost (I believe it was EXACTLY Win95, and was later fixed on Win98).

And, BTW, Rob, stop trying to hit on girls on the mailing list :) :) :) :)
I tried it in the past, doesn't work! :) :) :) :)

Pier




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Sheila Ratnam

Rob, Pier,

I noticed the following error logged in apache.log file.

2001-08-17 20:42:46 [org.apache.catalina.connector.warp.WarpConnector] Error 
accepting requests
java.net.SocketException: socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
at java.net.ServerSocket.implAccept(ServerSocket.java:246)
at java.net.ServerSocket.accept(ServerSocket.java:225)
at 
org.apache.catalina.connector.warp.WarpConnector.run(WarpConnector.java:554)
at java.lang.Thread.run(Thread.java:484)

As you correctly expected, the CATALINA_HOME_Log file is empty.
How can I correct this?

No problem with 'hitting' as long as I get this to work:)

Thanks,
Sheila



From: Pier P. Fumagalli [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
Date: Sat, 18 Aug 2001 02:52:14 +0100

Rob S. at [EMAIL PROTECTED] wrote:

  I should add that I tried changing the port number in the server.xml 
file
  inside conf folder as mentioned in the RUNNING.txt. Also checked and 
made
  sure that the browser is not trying to access a proxy server. But
  it hasn't
  worked.
  Thanks,
  Sheila
 
  ?!  This brings a joyous tear to my eye! =~)  Someone has read the
  documentation and acted upon it.  Sheila, you've made my day!  So your
  Tomcat has started at 8080 and http://localhost:8080/ doesn't do the
  trick...  Did you check the log files ($CATALINA_HOME/logs) for any 
activity
  when you make a request?  If nothing at all appears in those files, I 
don't
  think the request is getting there.

Another good test on Windows is to try to send your request to
http://127.0.0.1:8080/ as sometimes Windows forgets about the meaning of
localhost (I believe it was EXACTLY Win95, and was later fixed on Win98).

And, BTW, Rob, stop trying to hit on girls on the mailing list :) :) :) :)
I tried it in the past, doesn't work! :) :) :) :)

 Pier



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Sheila Ratnam

Pier,
I did try using the ip address instead of 'localhost', but it didn't work. 
Probably the error is what the log shows?

Sheila



From: Sheila Ratnam [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
Date: Sat, 18 Aug 2001 02:21:22 +

Rob, Pier,

I noticed the following error logged in apache.log file.

2001-08-17 20:42:46 [org.apache.catalina.connector.warp.WarpConnector] 
Error
accepting requests
java.net.SocketException: socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
at java.net.ServerSocket.implAccept(ServerSocket.java:246)
at java.net.ServerSocket.accept(ServerSocket.java:225)
at
org.apache.catalina.connector.warp.WarpConnector.run(WarpConnector.java:554)
at java.lang.Thread.run(Thread.java:484)

As you correctly expected, the CATALINA_HOME_Log file is empty.
How can I correct this?

No problem with 'hitting' as long as I get this to work:)

Thanks,
Sheila



From: Pier P. Fumagalli [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Help Installing Tomcat on Win95
Date: Sat, 18 Aug 2001 02:52:14 +0100

Rob S. at [EMAIL PROTECTED] wrote:

  I should add that I tried changing the port number in the server.xml
file
  inside conf folder as mentioned in the RUNNING.txt. Also checked and
made
  sure that the browser is not trying to access a proxy server. But
  it hasn't
  worked.
  Thanks,
  Sheila
 
  ?!  This brings a joyous tear to my eye! =~)  Someone has read the
  documentation and acted upon it.  Sheila, you've made my day!  So your
  Tomcat has started at 8080 and http://localhost:8080/ doesn't do the
  trick...  Did you check the log files ($CATALINA_HOME/logs) for any
activity
  when you make a request?  If nothing at all appears in those files, I
don't
  think the request is getting there.

Another good test on Windows is to try to send your request to
http://127.0.0.1:8080/ as sometimes Windows forgets about the meaning of
localhost (I believe it was EXACTLY Win95, and was later fixed on Win98).

And, BTW, Rob, stop trying to hit on girls on the mailing list :) :) :) :)
I tried it in the past, doesn't work! :) :) :) :)

 Pier



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Pier P. Fumagalli

Sheila Ratnam at [EMAIL PROTECTED] wrote:

 Rob, Pier,
 
 I noticed the following error logged in apache.log file.
 
 2001-08-17 20:42:46 [org.apache.catalina.connector.warp.WarpConnector] Error
 accepting requests
 java.net.SocketException: socket closed
 at java.net.PlainSocketImpl.socketAccept(Native Method)
 at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:424)
 at java.net.ServerSocket.implAccept(ServerSocket.java:246)
 at java.net.ServerSocket.accept(ServerSocket.java:225)
 at 
 org.apache.catalina.connector.warp.WarpConnector.run(WarpConnector.java:554)
 at java.lang.Thread.run(Thread.java:484)
 
 As you correctly expected, the CATALINA_HOME_Log file is empty.
 How can I correct this?

Err... That's the log for the Apache service... Not the one we're looking
for... :) Hrmmm... Are you sure you didn't screw up and typed

http://localhost:8008/ Instead of
http://localhost:8080/

That's the only thing I can possibly think of...

Pier




Re: Help Installing Tomcat on Win95

2001-08-17 Thread Pier P. Fumagalli

Sheila Ratnam at [EMAIL PROTECTED] wrote:

 Pier,
 I did try using the ip address instead of 'localhost', but it didn't work.
 Probably the error is what the log shows?

That shouldn' even happen as you shouldn't access the WarpConnector at all,
unless, of course, something's _really_ wrong...

Pier




Re: Help Installing with Win32

2001-01-15 Thread Filip Hanik

jakarta-tomecat-3.2.1.zip is the only file you need really.
Just unzip this file into %YOURDIR%

then goto %YOURDIR%/jakarta-tomcat-3.2.1/bin and edit tomcat.bat
on top of tomcat.bat add 
SET JAVA_HOME=c:\jdk1.3

or whereever your jdk is installed.

and then execute %YOURDIR%/jakarta-tomcat-3.2.1/bin/startup.bat

and it should run fine

Filip

~
Namaste - I bow to the divine in you.
~
Filip Hanik
Technical Architect
[EMAIL PROTECTED]

- Original Message - 
From: "Eric Weiss" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, January 15, 2001 4:16 PM
Subject: Help Installing with Win32


I must be missing something obvious, but I cannot get Tomcat to work on
Win 2000 Professional.

I downloaded the binaries (dlls) and installed the dll's into
%TOMCAT_HOME%bin.

I added TOMCAT_HOME (c:\progra~1\apache~1\tomcat) to my environment.

I installed servlet.jar into %TOMCAT_HOME%\lib.

I downloaded jakarta-servletapi-3.2.zip and installed it into
%TOMCAT_HOME% (actually %TOMCAT_HOME%\jakarta-servletapi-3.2\)

I did the same with jakarta-tomecat-3.2.1.zip
(%TOMCAT_HOME%\jakarta-tomcat-3.2.1)

I changed "start" to "run" in startup.bat

When I execute startup.bat I get the error message:

Exception in thread "main" java.lang.NoClassDefFoundError:
org/apache/tomcat/startup/Tomcat

So I guess I'm missing a jar file that contains Tomcat.class, but I am
not sure where that should be.

Any help will be appreciated.

Eric


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


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




Re: Help Installing with Win32

2001-01-15 Thread Ramkumar Manoharan


Did you set your JAVAHOME?

Ram

From: Eric Weiss [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Help Installing with Win32
Date: Mon, 15 Jan 2001 19:16:01 -0500

I must be missing something obvious, but I cannot get Tomcat to work on
Win 2000 Professional.

I downloaded the binaries (dlls) and installed the dll's into
%TOMCAT_HOME%bin.

I added TOMCAT_HOME (c:\progra~1\apache~1\tomcat) to my environment.

I installed servlet.jar into %TOMCAT_HOME%\lib.

I downloaded jakarta-servletapi-3.2.zip and installed it into
%TOMCAT_HOME% (actually %TOMCAT_HOME%\jakarta-servletapi-3.2\)

I did the same with jakarta-tomecat-3.2.1.zip
(%TOMCAT_HOME%\jakarta-tomcat-3.2.1)

I changed "start" to "run" in startup.bat

When I execute startup.bat I get the error message:

Exception in thread "main" java.lang.NoClassDefFoundError:
org/apache/tomcat/startup/Tomcat

So I guess I'm missing a jar file that contains Tomcat.class, but I am
not sure where that should be.

Any help will be appreciated.

Eric


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


_
Get your FREE download of MSN Explorer at http://explorer.msn.com


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




Re: Help Installing with Win32

2001-01-15 Thread Eric Weiss

Thanks.  It really is easy to get it running.  Jserv 1.1 was easy enough,
but this is even easier.  Now I can get to work developing some servlets
and JSP.

Thanks a lot.

Eric

Filip Hanik wrote:

 jakarta-tomecat-3.2.1.zip is the only file you need really.
 Just unzip this file into %YOURDIR%

 then goto %YOURDIR%/jakarta-tomcat-3.2.1/bin and edit tomcat.bat
 on top of tomcat.bat add
 SET JAVA_HOME=c:\jdk1.3

 or whereever your jdk is installed.

 and then execute %YOURDIR%/jakarta-tomcat-3.2.1/bin/startup.bat

 and it should run fine

 Filip

 ~
 Namaste - I bow to the divine in you.
 ~
 Filip Hanik
 Technical Architect
 [EMAIL PROTECTED]

 - Original Message -
 From: "Eric Weiss" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, January 15, 2001 4:16 PM
 Subject: Help Installing with Win32

 I must be missing something obvious, but I cannot get Tomcat to work on
 Win 2000 Professional.

 I downloaded the binaries (dlls) and installed the dll's into
 %TOMCAT_HOME%bin.

 I added TOMCAT_HOME (c:\progra~1\apache~1\tomcat) to my environment.

 I installed servlet.jar into %TOMCAT_HOME%\lib.

 I downloaded jakarta-servletapi-3.2.zip and installed it into
 %TOMCAT_HOME% (actually %TOMCAT_HOME%\jakarta-servletapi-3.2\)

 I did the same with jakarta-tomecat-3.2.1.zip
 (%TOMCAT_HOME%\jakarta-tomcat-3.2.1)

 I changed "start" to "run" in startup.bat

 When I execute startup.bat I get the error message:

 Exception in thread "main" java.lang.NoClassDefFoundError:
 org/apache/tomcat/startup/Tomcat

 So I guess I'm missing a jar file that contains Tomcat.class, but I am
 not sure where that should be.

 Any help will be appreciated.

 Eric

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


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