RE: BindException on Solaris

2000-10-30 Thread Mike Bremford
Tomcat also listens on port 8080 by default. Try netstat -a | grep 8080, or even better "lsof -i tcp:8080". Cheers... Mike > -Original Message- > From: Chris Francis [mailto:[EMAIL PROTECTED]] > Sent: 30 October 2000 15:27 > To: Tomcat-User (E-mail) > Subject: BindException on Solaris >

RE: TIME_WAIT socket buildup problem in Tomcat

2000-10-27 Thread Mike Bremford
Tomcat is multithreaded - ie. lots of connections -> one process, while Apache forks lots of processes, and when a process dies it takes it's waited connections too. Just a different design. Unless it's causing you problems I wouldn't worry about it. Cheers... Mike > -Original Message-

RE: Tomcat bug?

2000-10-24 Thread Mike Bremford
It may be a typo in your example, but shouldn't this be file="test2/b.jsp". > Content of a.jsp: > > I am a.jsp <%@ include file"test2/b.jsp" %> > >

RE: Splitting Web and database server - easy?

2000-10-24 Thread Mike Bremford
Shouldn't be. We're using Oracle and have done just this - it's easy as the oracle connect string specifies the host and the port to connect to. For bonus points, do something like this in your DB connection class to identify automatically if you're running on your development machine or your pro

RE: help with linking tomcat to apache

2000-10-24 Thread Mike Bremford
Title: RE: help with linking tomcat to apache Rebuild mod_jk.so with -lposix4 (looks like you're on Solaris - this worked for me).   Cheers... Mike -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Sent: 23 October 2000 22:26To: [EMAIL PROTECTED]Subject: RE

RE: Apache-Tomcat freeze

2000-10-23 Thread Mike Bremford
Which platform are you on? I get similar symptoms on Solaris 2.7 w/ the latest Sun JDK 1.2.2, both with jserv and jk. I ended up writing a polling script, which is a pretty poor option.   Cheers... Mike -Original Message-From: Oliver [mailto:[EMAIL PROTECTED]]Sent: 21 October 20

RE: TC3.2b3 was interrupting me

2000-10-20 Thread Mike Bremford
Err... > Root cause: > java.lang.NullPointerException > at > _0002fhome_0002ejsphome_jsp_1._jspService(_0002fhome_0002ejsph > ome_jsp_1.java, > Compiled Code) Call it a guess but I'd say you had a null pointer exception. The blank page means that the browser doesn't think it should displ

RE: server side include use of servlet tag

2000-10-20 Thread Mike Bremford
Or you could check the latest tomcat-apache howto from the CVS repository on jakarta.apache.org - it details how to easily convert SSI pages to JSPs. Cheers... Mike > > Stephanie Smith wrote: > > > > Fellow Tomcat users, > > I have Tomcat and Apache both running fine on my server. > > Servlets a