RE: java.net.BindException

2001-09-14 Thread Andy Bailey
It means that the port that Tomcat is trying to use is already in use by another process. You can check ports in use by using the netstat command before you try and start Tomcat, you can change the server port used by Tomcat in the conf/server.xml file. Usual suspects that occupy the port are -

RE: servlet-mapping problem

2001-09-14 Thread Andy Bailey
Here is an example of a Servlet and URL mapping servlet servlet-nameAServlet/servlet-name servlet-classmy.package.AServlet/servlet-class /servlet servlet-mapping url-pattern*.ase/url-pattern servlet-nameAServlet/servlet-name /servlet-mapping The servlet mapping associates the

RE: Help ~ Tomcat cache problem

2001-09-14 Thread Andy Bailey
-Original Message- From: Kenny Ma [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 12:51 PM To: [EMAIL PROTECTED] Subject: Re: Help ~ Tomcat cache problem I cant solve ~~ Anyone can solve this problem seems this is a big problem to many people Here is an excerpt from a

RE: servlet-mapping problem

2001-09-14 Thread Andy Bailey
This is from the conf/web.xml file. It shows how the /servlet url is mapped to all servlets. Andy servlet-mapping servlet-name invoker /servlet-name url-pattern /servlet/* /url-pattern /servlet-mapping -Original Message-

RE: Off-Topic JSERV Question...

2001-09-13 Thread Andy Bailey
Can you please not send posts to Tomcat User list to personal email addresses. Thanks -Original Message- From: Robert Keddie [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 3:09 PM To: '[EMAIL PROTECTED]'[EMAIL PROTECTED] Subject: Off-Topic JSERV Question... I will

RE: servlet hang

2001-09-12 Thread Andy Bailey
communication is NOT at all well suited for such scenarios. If you need your servlet to perform other duties, eg statistics etc, then it can also use RMI, means RMI is being used as a bridge. I found that I was able to do away with the servlet altogether in the end. Andy Bailey -Original Message

RE: nt service + nt service

2001-09-10 Thread Andy Bailey
Are you using either jdbc-odbc bridge or a JDBC driver that needs an ODBC entry? If so, then you will need to create a System DSN instead of a User DSN (assuming you haven't already). System DSN's are available to system services, User DSN's are not. That would explain the reason why it runs as

RE: How to get jk_nt_service to notice failed startup of my service?

2001-09-07 Thread Andy Bailey
In this case Tomcat has started successfully. A Servlet throwing a ServletException from init() is not cause for Tomcat to cease working or to indicate a failure on startup (as there isn't one). Andy -Original Message- From: Rida Ligurs [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: Tomcat URL Problem

2001-09-05 Thread Andy Bailey
, or the _ (underscore) sign. Andy Bailey PS not being totally conversant with the relevant RFC's I am not 100% certain of the above explanation however I personally avoid + signs in URL's like the plague. -Original Message- From: Ross Allard [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: CPU goes to 100%

2001-09-05 Thread Andy Bailey
Have you checked the Server to make sure that it isn't something else that is causing the crawl? Open Task Manager and check to see which process is eating the CPU, it might be something else other than Tomcat and your App. -Original Message- From: Murthy, Anand [mailto:[EMAIL

Suddenly my tomcat installation is broken

2001-09-04 Thread Andy Bailey
, TOMCAT_HOME is set correctly (I even set it up explicitly as a system var). I do not believe this is an OS issue (this is on win2k Advanced Server). Rebooting my system has had no effect either. Any help for this mysterious problem would be greatly appreciated. Andy Bailey