RE: Restarting Tomcat on NT

2001-07-03 Thread Randy Layman
No, there is no way to free a port. You mentioned that Tomcat comes up after a reboot, implying that you are running Tomcat as a service. If that is the case, the process name is jk_nt_service.exe. Unless you have another process that is constantly trying to grab that port, Tomcat is

RE: errors using Tomcat w/ IIS 5.0

2001-07-03 Thread Randy Layman
Connection Refused, I believe. It probably indicates that your workers.properties file and your server.xml file specify two different ports for the AJP12. Another possible issue (but its not very likely) is that you have configured IP Filtering on your 2000 server to disallow

RE: blue screen with servlets/jsp in Apache-Tomcat

2001-07-03 Thread Randy Layman
If it is a server problem I would suggest trying a different (1.2) JVM to rule that out. Also, I would stick with getting Tomcat standalone to work first. (Take little steps) Randy -Original Message- From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: Does Tomcat needs jdk 1.2.2

2001-07-03 Thread Randy Layman
Since there have been two mis-informed posts, I will also say that Java 1.1.7 is all that is required for Tomcat 3.x. If you want to use security policies or certain security aspects then you will need JDK 1.2 or above, and you will need the actual JVM, not any particular JAR, because

RE: Does Tomcat needs jdk 1.2.2

2001-07-03 Thread Randy Layman
If you are using just servlets, you don't need a JDK. If you are deploying JSPs then you need the JavaC compiler (in the tools.jar file in the later versions of the JDK), which is the component that Sun indicates that you are not supposed to redistribute. Randy -Original

RE: Does Tomcat needs jdk 1.2.2

2001-07-03 Thread Randy Layman
to the place were SUN says that tools.jar may not be redistribute? (We are using JSPs. ) Regards, Eitan -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 1:33 PM To: [EMAIL PROTECTED] Subject: RE: Does Tomcat needs jdk 1.2.2

RE: Does Tomcat needs jdk 1.2.2

2001-07-03 Thread Randy Layman
before another product ( which is a development tool ). Poor us. Eitan -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 2:38 PM To: [EMAIL PROTECTED] Subject: RE: Does Tomcat needs jdk 1.2.2 If you read

RE: Problem with stopping Tomcat

2001-07-03 Thread Randy Layman
Tomcat uses AJP12 to shutdown. -Original Message- From: Richard Richter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 1:15 PM To: [EMAIL PROTECTED] Subject: Problem with stopping Tomcat Hi all... When I tried to minimize my configuration I reach a state

RE: error using the sample applications with tomcat

2001-07-03 Thread Randy Layman
Your JAVA_HOME doesn't point to a JDK - Tomcat can't find Sun's Java compiler and therefore can't compile the JSPs into servlets. Randy -Original Message- From: Domzalski, Lynn [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 3:35 PM To: '[EMAIL PROTECTED]'

RE: problem with getPort()

2001-07-03 Thread Randy Layman
Is there a reason that you aren't using request.getPort()? -Original Message- From: Joseph D Toussaint [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 4:38 PM To: [EMAIL PROTECTED] Subject: problem with getPort() I'm trying to get the port off of a request

RE: how come im still getting mail from this group?

2001-07-02 Thread Randy Layman
Have you bothered sending the confirmation back to the server? -Original Message- From: Francis West [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 01, 2001 2:09 PM To: [EMAIL PROTECTED] Subject: how come im still getting mail from this group? after unsubscribing 4

RE: TOMCAT LOG FILE BEHAVIOUR

2001-07-02 Thread Randy Layman
Every time the Tomcat process is started the files are wiped clean. This means that for the service, every time the service is started it will clean the files (probably every machine restart). The maximum file size is limited by the size of the disk the log files reside on.

RE: How large can a session object be ?

2001-07-02 Thread Randy Layman
Limited by available heap size in Tomcat (the -Xmx?? parameter where ?? is a number followed by M for megabytes of memory). Randy -Original Message- From: Aravind Naidu [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 7:06 AM To: [EMAIL PROTECTED] Subject:

RE: access log for Tomcat

2001-07-02 Thread Randy Layman
words are the callbacks called at random or are they called in the order that they appear in the server.xml file? Other than the javadocs in the code is there any documentation on how to implement a RequestInterceptor? Thanks, Zach H. -Original Message- From: Randy Layman

RE: Multiple Hosting on IIS

2001-07-02 Thread Randy Layman
Because the default uriworkermap.properties file doesn't include mappings for the other URLs. Randy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 12:42 PM To: [EMAIL PROTECTED] Subject: Re: Multiple Hosting on IIS

RE: Multiple Hosting on IIS

2001-07-02 Thread Randy Layman
- From: Randy Layman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 02, 2001 9:19 AM Subject: RE: Multiple Hosting on IIS Because the default uriworkermap.properties file doesn't include mappings for the other URLs. Randy -Original Message- From: [EMAIL

RE: Packages and their property files.

2001-07-02 Thread Randy Layman
Use ClassLoader or ServletContext's getResourceAsStream method to load the properties. Then place the properties files in the WEB-INF/classes directory. Randy -Original Message- From: Mehrdad Jahansoozi [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 2:29 PM

RE: bindexception

2001-07-02 Thread Randy Layman
A. Stop whatever is using the port you are trying to use B. Change the port you are trying to use. To determine what ports you are trying to use with Tomcat, look in the sever.xml file for the Connectors, they will have ports associated with them. These are the ports

RE: Tomcat And IIS: Suggestion

2001-07-02 Thread Randy Layman
-Original Message- From: Steve [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 2:58 PM To: [EMAIL PROTECTED] Subject: Tomcat And IIS: Suggestion Hi I've been trying to use your tomcat-iis-howto.html to integrate IIS 5.0 on Win 2000 with Tomcat. I am in my

RE: how to use this list ?

2001-07-02 Thread Randy Layman
Yes. No. -Original Message- From: Jan Dünnweber [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 4:58 PM To: [EMAIL PROTECTED] Subject: how to use this list ? can anybody send me a short reply, so that i can be sure that sending messages to [EMAIL PROTECTED] causes my

RE: install Tomcat on NT and work with IIS question

2001-06-29 Thread Randy Layman
The problem is that the redirector doesn't think that /examples/jsp/index.html shouldn't be redirected. Check your uriworkermap.properties file to figure out why it thinks that this doesn't match. Randy -Original Message- From: Daniel Chan [mailto:[EMAIL PROTECTED]]

RE: Socket problems under heavy load on Win2K

2001-06-29 Thread Randy Layman
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, June 29, 2001 2:06 PM To: [EMAIL PROTECTED] Subject: Re: Socket problems under heavy load on Win2K The CLOSE_WAIT sockets may or may not be a problem ... one end of the connection has been

RE: IIS tomcat integration with webapps/test

2001-06-28 Thread Randy Layman
First, I would suggest that you post only in plain text (not HTML or RTF) since a number of the more experienced users can't easily read the complex messages, and you really want them to read your question. Second, the solution is to edit your uriworkermap.properties file to add

RE: FIRST POST - Servlet installation problem

2001-06-28 Thread Randy Layman
It seems that either: 1. Tomcat doesn't have AJP12 running (check your server.xml file, also doing a netstat -a on NT/2000 should show something listening on the port) 2. You workers.properties file doesn't list the AJP12 port/machine name correctly. For running Tomcat

RE: Urgent please respond

2001-06-28 Thread Randy Layman
There is no way to start the execution of a batch file on one machine and have it run in the context of another. Microsoft does have several solutions to this. You probably want to look into their RConsole (part of the NT Resource Kit). A different approach might be to set up IIS on

RE: Need Help understanding Oracle JDBCRealm

2001-06-28 Thread Randy Layman
1. No, you don't have to use JDBCRealm to connect to a database - if you want Tomcat to manage the authentication and you want to authenticate against a database, then, and only then, you need to use JDBCRealm. 1. (You have 2 Questions 1s) Putting the classesXXX.zip from

RE: Tomcat and beans

2001-06-28 Thread Randy Layman
If you create a bean with an application scope, it will stay there until you remove it. Once you have removed the bean from the application scope, it is eligible for Garbage collection by Java. Tomcat is not involved in calling finalizers. Tomcat also never serializes beans.

RE: Default index page

2001-06-28 Thread Randy Layman
Suggestion: set the welcome page to index.html in Apache. In Tomcat alias index.jsp as index.html for places where its needed. Not the best solution, but a workable one. (The problem really is Apache making the determination and making a specific request to Tomcat). Randy

RE: NT Service won't start

2001-06-28 Thread Randy Layman
Also make sure that you don't use spaces in any of your path names (TOMCAT_HOME or JAVA_HOME) Randy -Original Message- From: COLOMBO,DAN (HP-Boise,ex1) [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 4:22 PM To: '[EMAIL PROTECTED]' Subject: RE: NT Service

RE: Completely frustrated with NoClassDefFoundError...

2001-06-27 Thread Randy Layman
class definitions. Randy -Original Message- From: [ .--- --- -. / -... --- .-- . -. ] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 8:06 PM To: [EMAIL PROTECTED] Subject: RE: Completely frustrated with NoClassDefFoundError... Randy Layman: It would

RE: Problem in IIS 5.0 and Tomcat 3.2,1 installation

2001-06-26 Thread Randy Layman
If the filter doesn't have a green arrow then it can't be working, and therefore the log line is to be expected. Problems getting a green arrow up are always related to one of two things: 1. Incorrect registry settings (recheck your spelling and spacing) 2. No

RE: Tomcat + FOP, missing method in org.w3c.dom.Node

2001-06-26 Thread Randy Layman
You need to get them info the classpath before the parser.jar file is added. You can do this several ways: 1. Edit Tomcat.bat to add xalan/xerces before the internal classpath is built 2. Drop xalan/xerces into TOMCAT_HOME/lib and rename them to _xalan/_xerces

RE: Adding new Context to Tomcat

2001-06-26 Thread Randy Layman
When using IIS there are two things that you need to do for a new context. First, add it to Tomcat (which you did with ContextAdmin). Now, you need to make IIS notice the new context. Do this by editing the uriworkermap.properties file. You probably just want to copy the samples for

RE: Enterprise JavaBeans support?

2001-06-26 Thread Randy Layman
Tomcat is not an EJB Container. It can work with EJB Containers like JBoss, WebLogic, etc by running the remote interfaces which will then communicate with the EJB server. Randy -Original Message- From: Aaron Cooper [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26,

RE: Tomcat + FOP, missing method in org.w3c.dom.Node

2001-06-26 Thread Randy Layman
seem to work on Win2000 add xalan/xerces before the internal classpath is built Can anybody give an exapmle how this would look like? Thanks, Randy! -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 26. Juni 2001 12:51 To: [EMAIL PROTECTED

RE: Tomcat causing crashes, please help

2001-06-26 Thread Randy Layman
I am running Tomcat on Win2K pro as well, using JDK 1.2.2_007 and not having any problems. I know that Sun has had lots of problems with their 1.3 JDKs, maybe you should try upgrading to 1.3.1? The error message that you list is not really significant. If you want more

RE: Bean in application scope

2001-06-26 Thread Randy Layman
This sounds like something that you need to deal with in the internals of your bean - using the Connection's isClosed method (or something like that). Randy -Original Message- From: Jack Li [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 9:28 AM To: '[EMAIL

RE: Odd Tomcat 3.3m3 Problem

2001-06-26 Thread Randy Layman
I'm going to throw my 2 cents worth in here, did you, perhaps, stop Tomcat after starting Apache? I seem to remember that every time you stop Tomcat, you must also stop Apache, then start Tomcat and start Apache. Randy -Original Message- From: GOMEZ Henri

RE: URGENT HELP, PEASE IIS integration won't integrate

2001-06-26 Thread Randy Layman
Remove your virtual directory, it is unnecessary and causing your problems. Randy -Original Message- From: Kevin Queen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 2:16 PM To: Tomcat-User@Jakarta. Apache. Org Subject: URGENT HELP, PEASE IIS integration

RE: how to change list subscription options

2001-06-25 Thread Randy Layman
You need to unsubscribe from the digest and subscribe to the regular list. To unsubscribe from the digest send mail to [EMAIL PROTECTED] (assuming that is the account you are subscribed as). Remember to return the confirmation email. And to subscribe, send email to [EMAIL PROTECTED]

RE: Info Required : Very urgent please !

2001-06-25 Thread Randy Layman
There is no cost for distributing Tomcat (although you need to be careful about distributing a JDK from Sun). As far as I know, there are no companies that are selling support for Tomcat, although I think a few individuals on the tomcat-user list are providing contract support

RE: ***ANOTHER TOMCAT CLASSPATH BUG***

2001-06-25 Thread Randy Layman
No, that's how things are supposed to work - contexts are independent of each other. Randy -Original Message- From: niv the tool [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 24, 2001 11:42 AM To: [EMAIL PROTECTED]; 'Carl Rosenberger' Subject: RE: ***ANOTHER

RE: Tomcat as a Service in Win 2k

2001-06-25 Thread Randy Layman
Generally this is due to some form of Path error causing the service not to be able to start. There are three things to check: 1. The path to wrapper.properties is correct (its in the registry under HKEY_LOCAL_MACHINE\Services\CurrentControlSet\Service Name. 2. The

RE: Tomcat not putting session objects into JSP page context? (repost...)

2001-06-25 Thread Randy Layman
First, if you want people on the list to respond, you should post in plain text (a significant number use text-only email readers, which makes the message you sent very hard to read). Second, if you want you object to be found from the PageContext object, then you need to put it

RE: application error

2001-06-22 Thread Randy Layman
First, I would suggest that you post using plain text messages, more people will be able to read your message, which is what you want, right? Second, I believe that you have fallen victim to the JDBC-ODBC Bridge threading problem. From your message I believe that you are using

RE: POST file via Form O'Reilly lib Tomcat problems

2001-06-22 Thread Randy Layman
Unfortunately I don't have an answer as to why you can't upload, but I can give you a little information that might help you. First, when using Jason Hunter's library, request.getParameter won't work. His library reads the entire posting and then provides methods to get the

RE: Verify OracleJSP installation instead of jasper

2001-06-22 Thread Randy Layman
How to replace Jasper I don't know, but if you what to check if you're using Jasper simply add a syntax exception to a JSP file and then look at the stack trace from the compile. If you see the Jasper package being used then you are still using Jasper. Randy -Original

RE: getResourceAsStream doesn't find files in WEB-INF/classes

2001-06-22 Thread Randy Layman
The question is - what class loader loaded the class this is being called from? The getClass().getResourceAsStream doesn't magically know about resources that are not loaded with its own classloader or one of its parents. So, app.properties and the class that you are trying to load

RE: User IP Address

2001-06-22 Thread Randy Layman
request.getRemoteAddr() will get the user's IP Address requet.getRemoteHost() will do DNS lookup on the address request.getHeader(Referrer) is the referrer, I believe. Randy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent:

RE: User IP Address

2001-06-22 Thread Randy Layman
way.. referrer should be spelled as so: request.getHeader(referer) not sure why... but i beat my head against the wall for an hour... until i tried the alternate spelling... Cj Randy Layman wrote: request.getRemoteAddr() will get the user's IP Address

Request Logging

2001-06-20 Thread Randy Layman
Since a number of people have asked for it over the past and I had a little extra time, I wrote a RequestInterceptor that logs requests. Its still a little rough and have room for some performance improvements, but I believe that it is functional. You can view the documentation

RE: Upgrading from Tomcat3.1.1 to Tomcat3.2.2

2001-06-20 Thread Randy Layman
This message means what it says - Tomcat can't fine the file includes/LocalizationConstatns.js. I believe that this is relative to the file that is including it and not the webapp. Randy -Original Message- From: Govind Agarwal [mailto:[EMAIL PROTECTED]] Sent:

RE: omegacms

2001-06-19 Thread Randy Layman
If you're on UNIX, add it to TOMCAT_HOME/classes, if you're on NT you'll need to modify the tomcat.bat file so that Tomcat adds this directory to its automatically built classpath. Another option it to add the conf.properties to the CLASSPATH environment variable. In either

RE: Public IP IIS and Private IP Tomcat?

2001-06-19 Thread Randy Layman
I don't see why this wouldn't be possible. On the Win2K you would install the isapi_redirect.dll (see the IIS-Tomcat how to). In the workers.properties file you specify the location of the actual worker - this would be the private IP of the Linux computer. The only possible sticking

RE: OutOfMemory Error

2001-06-19 Thread Randy Layman
Chances are you either: 1. Are using a very small stack (using -Xmx with a small number) 2. You are putting items into sessions that you aren't removing and your sessions aren't expiring fast enough to keep your system in memory 3. You have a servlet with a

RE: Tomcat starting problem

2001-06-18 Thread Randy Layman
The problem is that the JAVA_HOME environment variable is not set correctly - it has an equal sign in it (that's why its saying usr/java1.2=/bin/java: not found). It also looks like the classpath has the same issue. I would suggest looking though the environment variables and resetting

RE: TomCat with win2000 and IIS....help...urgent

2001-06-18 Thread Randy Layman
The problem seems to be in your Tomcat configuration - the isapi redirect log file indicates that the 404 error is coming from Tomcat. Check your tomcat logs or console for messages about the request and where it was trying to go. Randy -Original Message- From:

RE: Problem starting NT service

2001-06-18 Thread Randy Layman
Check the jvm.stdout/.stderr files, but a common cause of this is spaces in the path to the JVM or Tomcat Home. -Original Message- From: Barney Dalgarno [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 17, 2001 2:48 AM To: [EMAIL PROTECTED] Subject: Problem starting NT

RE: access log for Tomcat

2001-06-18 Thread Randy Layman
There isn't a module for Tomcat that does this that I know of (and nothing built into Tomcat, regardless of what Luba says), although it should be fairly easy to do - you need to write a RequestInterceptor that just logs, not intercepts, the requests. Randy -Original

RE: problem in getHeader()

2001-06-18 Thread Randy Layman
Uhh, headers don't work that way. You send headers to help the browser and network know what they are working with. The browser sets the headers for the new request to help you and the network deal with the request. One set of headers has no bearing on any others. Randy

RE: access log for Tomcat

2001-06-18 Thread Randy Layman
different options to log? -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 1:09 PM To: [EMAIL PROTECTED] Subject: RE: access log for Tomcat There isn't a module for Tomcat that does this that I know of (and nothing built

RE: Re[3]: nt-service

2001-06-18 Thread Randy Layman
It probably had to do with the fact that the System account doesn't have access to the network drive, which would prevent it from finding the binary to run. (It is probably a combination of not having the partion mounted and security permissions). Randy -Original

RE: Running Tomcat under Win 2K - help!

2001-06-18 Thread Randy Layman
First, in your own best interest, don't post with HTML/RTF email messages, it limits the number of people who can read your message, which you don't want. Second, I think a more telling problem is that you are getting NoClassDef for the java executable. Its like the script is

RE: Tomcat as Service Crashing.

2001-06-14 Thread Randy Layman
I don't know if I agree with this should part - running a SecurityManager is another layer of overhead. We specifically choose not to run with a security manager because: 1. We control or trust all of the code on our systems (if we didn't trust it, we wouldn't use it) and if

RE: Need help urgently regarding Tomcat with IIS

2001-06-14 Thread Randy Layman
Also make sure that you have created the /jakarta virtual directory for the same IIS web site that you installed the filter. Randy -Original Message- From: yeye [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 14, 2001 7:46 AM To: [EMAIL PROTECTED] Subject: RE:

RE: Config: zip-files (dev pls look!)

2001-06-14 Thread Randy Layman
Section 9.4 of the Servlet 2.2 spec (page 44) states that WEB-INF/lib/*.jar is the location for Java Archives and does not mention any other resources. Since .zip is not mentioned, if you used them in the lib folder then you could have a non-compliant webapp, which would make Tomcat a

RE: Using JSP to Save file

2001-06-14 Thread Randy Layman
How do you know the file isn't being written? I am willing to bet that if you searched your entire system for economic.txt you would find the file, probably in the directory that you started tomcat or the %TOMCAT_HOME%/bin folder. Randy -Original Message- From: Foo

RE: Order of libraries in CLASSPATH question?

2001-06-14 Thread Randy Layman
See comments intermixed... -Original Message- From: Brett G. Palmer [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 14, 2001 11:08 AM To: [EMAIL PROTECTED] Subject: Order of libraries in CLASSPATH question? We are having random problems with some of our application

RE: Graceful Shutdown

2001-06-14 Thread Randy Layman
No, tomcat stop will stop tomcat - shudtown.sh/bat will call tomcat.sh/bat with the stop argument. net stop Tomcat is another way to stop it on NT IF you have installed it as a service. Randy -Original Message- From: Tim O'Neil [mailto:[EMAIL PROTECTED]]

RE: Error: NET HELPMSG 3534

2001-06-14 Thread Randy Layman
First, you probably want to use plain text message so that a higher percentage of users can read your message (not every one have HTML/RTF enabled email readers). Second, in general this means I can't service and I don't know why - you probably want to check that the path to

RE: Tomcat hangs if I refer to a context that doesn't exist

2001-06-13 Thread Randy Layman
I'm going to have to support Thomas on this. Not only is it covered in the mailing list archives, but its also in the README file in %TOMCAT_HOME%/docs, section 6.11, approximately line 292. Randy -Original Message- From: Jeff Trent [mailto:[EMAIL PROTECTED]] Sent:

RE: NoClassDefFoundError

2001-06-13 Thread Randy Layman
I would suggest to look at %TOMCAT_HOME%/logs/jasper.log - it will show you the classpath its using for each request, although it sounds like the jar isn't in the right place - you need to put it into webapp/WEB-INF/lib folder and its name must end in .jar. Randy -Original

RE: Tomcat as Service Crashing.

2001-06-13 Thread Randy Layman
I don't think that this is the problem that is typically found in the archives. This stack trace indicates that Tomcat was trying to read from the socket, not write to it. IE won't close the socket before it sends the request. However, I would say that I doubt that this is

RE: jspc and deployment

2001-06-12 Thread Randy Layman
. Thanks Oskar FRED wrote: Hi Randy, Thank you for your reaction. I got it working. This will save me a lot of time and will make my application more scalable. Sophie Randy Layman schreef: The answer is you can't. Even if you could get it to generate

RE: tomcat start fails

2001-06-11 Thread Randy Layman
Are you getting any error messages? Do you see a widnow appear and disappear really quickly? I would suggest trying tomcat run instead, which will launch to the same DOS window and probably give you more information about your problem. Randy -Original

RE: help isapi_redirect.dll problem

2001-06-11 Thread Randy Layman
First, I would suggest posting only in plain text messages to this list - a number of readers don't support HTML email and, therefore, have a hard time reading your message (probably not what you want). Second, in the same directory as the .dll file, there is a .zip file named

RE: jsps and servlets in same context?

2001-06-11 Thread Randy Layman
Did you try restarting Tomcat after changing the web.xml file? -Original Message- From: Burkard Endres [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 6:40 AM To: [EMAIL PROTECTED] Subject: AW: jsps and servlets in same context? i have followed your instructions

RE: Problems with Tomcat/IIS5

2001-06-11 Thread Randy Layman
The problem is with your Tomcat configuration - AJP12 is reading a 404 from the connector (about 1/2 way through your log entry). Check out your Tomcat configuration, specifically look that /conference is either a webapp or a directory from the ROOT context, but the Tomcat logs should

RE: Tomcat and IIS revisited!

2001-06-11 Thread Randy Layman
-Original Message- From: Winer, Matthew [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 9:54 AM To: 'Tomcat-User (E-mail) Subject: Tomcat and IIS revisited! Ok well I have made some progress this morning. I now how the green up arrow for the ISAPI filter. I am so

RE: Tomcat and IIS revisited

2001-06-11 Thread Randy Layman
Your workers file is not correct - from your previous messages, isapi_redirect is finding that the resource should be a redirect to Tomcat. The problem is it can't find the worker for the redirect - the right side of the mapping in uriworkermap.properties is not defined (or not correctly

RE: Tomcat and IIS revisited

2001-06-11 Thread Randy Layman
-Original Message- From: Winer, Matthew [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 1:38 PM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat and IIS revisited Here is a copy of my workers.properties and uriworkermap.properties files. I was told that this is where my

RE: Corrupt isapi_redirect.dll and ISS5

2001-06-11 Thread Randy Layman
You can assume that they are acceptable, and if you're asking the question then they are probably correct. The only time they would be acceptable but not correct involves two sets of files and you not wanting to use one of them Randy -Original Message- From:

RE: Tomcat and IIS revisited

2001-06-11 Thread Randy Layman
# worker.inprocess.sysprops=myprop=mypropvalue # # Additional path components. # # worker.inprocess.ld_path=d:$(ps)SQLLIB$(ps)bin # -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 1:36 PM To: [EMAIL PROTECTED] Subject: RE: Tomcat and IIS

RE: Tomcat NT service mode

2001-06-11 Thread Randy Layman
To do this from a program/non-interactive environment, for an already installed service, edit the registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\[ServiceName]\Start. The value 2 is definitely for Automatic. I believe that 0 is disabled, 1 is manual, but I'm not

RE: Problem starting TOMCAT on Win 2000

2001-06-11 Thread Randy Layman
TOMCAT_HOME should be C:\some\dir\foo\jakarta-tomcat-3.2.2 (i.e. absolute path). -Original Message- From: Priya Gupta [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 3:01 PM To: [EMAIL PROTECTED] Subject: Problem starting TOMCAT on Win 2000 Hello I

RE: I need an advice to make Tomcat a NT service

2001-06-08 Thread Randy Layman
-Original Message- From: Alexandre Bouchard [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 6:01 PM To: [EMAIL PROTECTED] Subject: Re: I need an advice to make Tomcat a NT service Thx for the warning Randy (about the JDBC-ODBC) I didn't know that JDBC-ODBC was

RE: Source script reveal bug

2001-06-08 Thread Randy Layman
I am still unable to reproduce this. I am running Tomcat standalone on Win2000 and behind IIS on NT4, neither exhibit the problem you are describing, or the one that you linked to. Both of my systems are using Sun's Java 1.2.2_007. Could it be that somehow your IIS

RE: crashing tomcat with file not found

2001-06-08 Thread Randy Layman
Check your error-page directive in the web.xml file for the web app. It sounds like what is happening is that you are requesting the file and when its not found, it requests the error page, which isn't found, which requests the error page, which isn't found, etc. I believe that this

RE: Automaticaly update the servlets

2001-06-08 Thread Randy Layman
The problem is that the System class loader (the one that loads your CLASSPATH environment variable) is keeping a cache around of the class. This is why Milt (correctly) told you to remove the WEB-INF/classes from your classpath if you want the auto-reloading to work as it is supposed

RE: Tomcat as a service

2001-06-08 Thread Randy Layman
What are you getting in your jvm.stdout/stderr logs? There is usually some very useful diagnostic information in them. Randy -Original Message- From: Winer, Matthew [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08, 2001 11:02 AM To: '[EMAIL PROTECTED]' Subject:

RE: Error with Tomcat-Example-JSPs

2001-06-08 Thread Randy Layman
-Original Message- From: Frank Niedermann [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08, 2001 12:24 PM To: tomcat-user Mailing List Subject: Error with Tomcat-Example-JSPs java.lang.NoClassDefFoundError: sun/tools/javac/Main Your tools.jar file is not being

RE: Newbie Help

2001-06-07 Thread Randy Layman
They left out a step. Somewhere around step 5 you need to set the environment variable JAVA_HOME (and I would suggest setting TOMCAT_HOME so that the shell script doesn't have to guess). You can do this at the same place where they recommend setting the PATH with the following two

RE: I need an advice to make Tomcat a NT service

2001-06-07 Thread Randy Layman
Someone has already answered about the service so I will pass over that issue and warn you of another problem in your architecture. Sun's JDBC-ODBC bridge is not thread safe. If you attempt two concurrent connections then you will get a crash (Dr. Watson or GPF depending on

RE: Starting tomcat

2001-06-07 Thread Randy Layman
Move Tomcat and Java out of directories that contain spaces. -Original Message- From: Denis Kovalkov [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 7:59 AM To: [EMAIL PROTECTED] Subject: Starting tomcat I installed Tomcat 3.2.2 on win2000 with jdk 1.3.1.

RE: Ajp13 and Internal HTTP cause Heavy CPU Load

2001-06-07 Thread Randy Layman
You have removed the root web context and are making a request for a file that can't be handled. (Look in the readme file for more details about this bug). Randy -Original Message- From: Shahed A Moolji [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 10:36

RE: source code visible to world

2001-06-07 Thread Randy Layman
That's interesting. I just tested my installation and this doesn't happen on mine. I'm running Tomcat 3.2.1 as well. The file %TOMCAT_HOME%/doc/readme starts with the line below: $Id: readme,v 1.8.2.11 2000/12/12 21:01:41 craigmcc Exp $ indicating that my readme was made in Dec 2000,

RE: Bundling Tomcat

2001-06-07 Thread Randy Layman
I have dealt with it. The software license spells it out pretty clearly - Tomcat is free to distribute. No royalties, no permission required. What you do need to be aware of is that you can't freely redistribute the JDK. You'll need to either pre-compile your JSPs or distribute

RE: tomcat + IIS 5

2001-06-07 Thread Randy Layman
First, I would suggest that you only post using Plain Text email messages. A number of readers on this list don't have HTML enabled email readers and will simply skip your message because its to difficult to decipher, which you probably don't want. Your issue seems to be that

RE: [jk_uri_worker_map.c (334)]: jk_uri_worker_map_t::uri_worker_map_close, NULL parameter

2001-06-06 Thread Randy Layman
As I have posted before (and thus is available in the mailing list archives), there are two common causes of this. The first is a mistake in the registry - the path to your uriworkermap.properties file or the path to the workers.properties file is not correct. The other problem is that

RE: download files using ftp from browser

2001-06-06 Thread Randy Layman
One thing that is implicit in Moin's response is that you have an FTP server set up. Tomcat does not support this functionality. Most UNIX systems have FTP servers already installed and they are available for NT, just be careful - incorrectly configured FTP sites can be huge security

<    1   2   3   4   5   6   7   8   >