Logging User-Agent

2002-11-05 Thread neal
Does anyone know how to log the User-Agent (browser) in Tomcat access logs? I found this reference on the web, but don't really get the context. I tried replacing the Logger node in my server.xml file with the second listed RequestInterceptor but its still not logging the User-Agent. Does anyone

Re: Web.xml and Server.xml

2002-11-05 Thread Craig R. McClanahan
On Wed, 6 Nov 2002, Khurram Munir Khokhar wrote: > Date: Wed, 06 Nov 2002 11:53:46 +0500 > From: Khurram Munir Khokhar <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Web.xml and Server.xml > > Hi This is Khurram > > i) I want to ask that

Re: [Windows2k] Start tomcat as Service

2002-11-05 Thread Kwok Peng Tuck
So have I. Works like a charm on my setup. Nicholas Orr wrote: I have, why? -Original Message- From: François Vallet [mailto:fvallet@;infovista.com] Sent: Wednesday, 6 November 2002 3:42 AM To: 'Tomcat Users List' Subject: [Windows2k] Start tomcat as Service Who have ever start Tomc

Re: Tomcat NT Service hogs >90% CPU - intermittent problem

2002-11-05 Thread Ben Walding
I had this problem at one point (4.1.10, and no IIS in my config though) My "solution" was to upgrade to 4.1.12 and upgrade the JDK to 1.4.1.01, this seemed to work. No idea what caused it though. Christopher Watson wrote: Hello All, Currently my config is TOMCAT 4.1.12 jdk1.3.1_03 Windows

Web.xml and Server.xml

2002-11-05 Thread Khurram Munir Khokhar
Hi This is Khurram i) I want to ask that what can be the maximum effects of not giving a resource reference entry in the web.xml of my application , as i havnt got any problem by not giving it since a whole year working on enterprise application. ii) secondly is it possible to relaod server.xm

RE: [Windows2k] Start tomcat as Service

2002-11-05 Thread Nicholas Orr
I have, why? -Original Message- From: François Vallet [mailto:fvallet@;infovista.com] Sent: Wednesday, 6 November 2002 3:42 AM To: 'Tomcat Users List' Subject: [Windows2k] Start tomcat as Service Who have ever start Tomcat 4.1 as service on Windows 2k ? Thanks in advance. -- To unsubsc

Re: Installing and using manager app in 4.1.12

2002-11-05 Thread Kaustuv Sharma
the manager application request url is like this http://{host}:{port}/manager/{command}?{parameters} you have to give the command which you want to execute. For more details go to: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/manager-howto.html - Original Message - From: Jon E

RE: JDBC Error with Tomcat 4.0.6

2002-11-05 Thread Nicholas Orr
Also you are using the right driver. Nicholas Orr -Original Message- From: Nicholas Orr [mailto:Nicholas.Orr@;mim.com.au] Sent: Wednesday, 6 November 2002 2:11 PM To: 'Tomcat Users List' Subject: RE: JDBC Error with Tomcat 4.0.6 I've had this error and it means: 1) SQL Server can't fin

Re: Why does Tomcat not set HTTP_Referer?

2002-11-05 Thread Craig R. McClanahan
On Tue, 5 Nov 2002 [EMAIL PROTECTED] wrote: > Date: Tue, 5 Nov 2002 22:13:39 -0500 > From: [EMAIL PROTECTED] > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Why does Tomcat not set HTTP_Referer? > > I'm trying to setup some links that jump to another site. Th

RE: JDBC Error with Tomcat 4.0.6

2002-11-05 Thread Nicholas Orr
I've had this error and it means: 1) SQL Server can't find the machine where sql server is running or 2) SQL Server can't connect to the port you have given it. So there is something wrong with this sqlserver://vc34:1433 Go to your SQL Server machine, and run "Client Network Utility" can be foun

Re: Why does Tomcat not set HTTP_Referer?

2002-11-05 Thread Chris Wolcott
I could be wrong, but I believe I read something that said the servlets must set thier own response header values. (See response.setContentType("text/html"); and other set commands.) [EMAIL PROTECTED] wrote: I'm trying to setup some links that jump to another site. That other site checks the

how to set timeout in jboss/tomcat

2002-11-05 Thread Mark Goking
hi call, im using jboss/tomcat combo where can you set the timeout of the session? what file? i tried placing it in web.xml but it somehow disrupts the code of my jsp page. i had to take it out. i figure it may be somewhere in the conf/ directory ? but im guessing this will be effective for a

security manager problem

2002-11-05 Thread Mok Swee Loong
Dear all, Just started with tomcat 4.1.2, i am trying to run things a little bit more secure, and try to figure out a good way to start and stop the server. Pls do comment if you have any opinion or good reference regarding this. Thanks a million. - I plan to run the tomcat server as user "tomcat

Why does Tomcat not set HTTP_Referer?

2002-11-05 Thread JStanczak
I'm trying to setup some links that jump to another site. That other site checks the header for the HTTP_Referer environment variable. When I jump from my servlet in Tomcat to this other site this variable is empty. Why does Tomcat not set this variable? Am I just doing something wrong? Help. --

Only one user at a time can use Tomcat ?

2002-11-05 Thread achana
Has this thread been discussed already, sorry I was "draining the swamp" and might have missed that. Only one user at a time can log onto my Tomcat. What have I missed and where should I be looking. TIA -- To unsubscribe, e-mail: For additiona

Re: MBeans exception and mod_jk

2002-11-05 Thread Mark Diana
OK, I tried all of the following: I copied the contents of the auto-mod_jk.conf file to httpd.conf and removed the Include directive. Still no luck. I also added the JkMount /examples/* ajp13 statement just to be sure. No luck. I tried using the mod_jk.so binary for mac osx from the jakarta web

Re: compiling mod_jk under AIX

2002-11-05 Thread Milt Epstein
On Tue, 5 Nov 2002, Maureen Barger wrote: > Thanks. I have googled and see lots of folks with the error but none > with the solution. Same with the archives. Well, I did a quick search earlier today when I sent that earlier response, and I saw lots of people posting with similar errors, and lots

Logging UserAgent (browser)

2002-11-05 Thread neal
Is it possible to instruct Tomcat to log the HTTP UserAgent (Aka which browser), in the access logs? Thanks! Neal -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Connection pool question:

2002-11-05 Thread Kwok Peng Tuck
Are you running the tomcat which is built into Netbeans ? Michael Nicholson wrote: I'm building a webapp, and I want to use connection pooling with it. In order to play around some, I made a dummy webapp that does virtually nothing, but uses the connection pool. So then I cut and pasted some

RE: digest authentication or DIGEST

2002-11-05 Thread Koes, Derrick
I think what is really happening is that the realm is handling the digesting to do the password "match". Setting auth-method to DIGEST probably tries to handle encryption up front, not delaying it until (plain text until then) the realm code. What encryption algorithm is used if you select DIGE

Re: Installing and using manager app in 4.1.12

2002-11-05 Thread Jon Eaves
Turner, John wrote: This is my first foray into the world of the Tomcat manager app. Any help is appreciated. [ snip of great example of a good request for help ] When I access http://some.host.name:8080/manager, I get prompted with a standard auth request pop-up. I type in the username and

Re: Installing and using manager app in 4.1.12

2002-11-05 Thread Stefan Wimmer
Hi John, there is a nice HTML interface via http://your_host:your_port/manager/html/list You'll get the same auth request pop-up and then a very nice list of webapps our tomcat is running. Hope this helps Stefan * Turner, John <[EMAIL PROTECTED]> wrote on 05/Nov/2002 - 02:56:40 : > > This

RE: digest authentication or DIGEST

2002-11-05 Thread Frank Balluffi
Jake, Because tomcat-users.xml only contains the digested password (it does not contain the string "password") and I am able to authenticate by entering the password "password" into IE's dialog box, I assume that the digested password is being sent. What surprised me was that web.xml's auth-me

[Windows2k] Start tomcat as Service

2002-11-05 Thread François Vallet
Who have ever start Tomcat 4.1 as service on Windows 2k ? Thanks in advance. -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: [Installation] silent install

2002-11-05 Thread François Vallet
i want to install tomcat on windows without any windows !( or any prompt) But I've found a zip file that apparently we have just to uncompress it and that's all . So I think I can do a silent install of tomcat with a zip file. > -Original Message- > From: Turner, John [mailto:JTurner@;AA

RE: Only one user at a time can connect thru Tomcat?

2002-11-05 Thread Sexton, George
You might want to read this FAQ and re-post your question. There is absolutely no way anyone can help you given the insufficient amount of information provided. http://www.tuxedo.org/~esr/faqs/smart-questions.html George Sexton MH Software, Inc. Home of Connect Daily Web Calendar Software http:/

Only one user at a time can connect thru Tomcat?

2002-11-05 Thread achana
Hi. I am trying to find out why only one user at a time can connect thru Tomcat. Other connection attempts fail ??? -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: digest authentication or DIGEST

2002-11-05 Thread Jacob Kjome
Am I missing something? If you use BASIC auth, wouldn't your password now be completely plain textor are you sending your MD5 hashed password instead of "password". I guess if that is the case then your password would be safe, but who can remember a password such as "5f4dcc3b5aa765d61d83

Number of people connecting thru Tomcat ???

2002-11-05 Thread achana
Hi. A rather basic question : I have a number of users using Apache/Tomcat, but since I have re-installed the system after a crash, it seems only one person can ever use it at a time i.e. a single-user setup. Please what have I done wrong ? TIA -- To unsubscribe, e-mail:

RE: Tomcat bug - chokes on # when redirecting

2002-11-05 Thread Schnitzer, Jeff
Of course, that makes perfect sense - I had been assuming that the # was always passed to the server. But of course that's a client-side thing. An IE bug (oh joy). It's not a caching issue - the JSP displays an invokeCount just to be sure. The next question then - is it even remotely appropriate

Re: Webapp deploy problems

2002-11-05 Thread Jeanfrancois Arcand
Post your web.xml and server.xml to give more information to all the peoples watching this list :-) -- Jeanfrancois Darin Kuntze wrote: Hi, I'm having trouble getting my servlets, residing in a classes directory, to execute. Tomcat appears to no be able to locate them. I am using the traditio

Webapp deploy problems

2002-11-05 Thread Darin Kuntze
Hi, I'm having trouble getting my servlets, residing in a classes directory, to execute. Tomcat appears to no be able to locate them. I am using the traditional directory structure with WEB-INF, lib, etc.. Hitting the URL: http://web:8080/cmscvb/ Gives me a directory listing. I have tested jsp's

Re: server.xml won't change

2002-11-05 Thread Garrett Smith
in your Context" docBase="" --- Ian Hunter <[EMAIL PROTECTED]> wrote: > I'm having the same problem. If you request a file OTHER than index.jsp, > you'll get the correct file, but http://servername/index.jsp is ALWAYS the > same file, even if you delete the webapps/ROOT directory. > > Can anyon

Re: MBeans exception and mod_jk

2002-11-05 Thread Mark Diana
But http://localhost/examples/servlet/ doesn't work either. None of the URLs specified by the JkMount statements works from Apache. Neither does /admin, or any of the other default webapps. I just didn't post those parts of mod_jk.conf to save space. Mark On Tuesday, November 5, 2002, at 03:22

RE: JDBC Error with Tomcat 4.0.6

2002-11-05 Thread Wagoner, Mark
I'm by no means a SQL Server expert, but based on the error I would guess the driver is not communicating with the server. Can you connect to the database from the Tomcat server but outside of Tomcat (using some query tool)? -Original Message- From: John Mattos [mailto:mattosj@;yahoo.com]

RE: digest authentication or DIGEST

2002-11-05 Thread Frank Balluffi
Derrick, You are correct. Is this a bug or is this the way it is supposed to work? Thanks! Frank "Koes, Derrick"

Re: MBeans exception and mod_jk

2002-11-05 Thread Mark Diana
The access log shows this when trying to get /examples: 127.0.0.1 - - [05/Nov/2002:13:58:43 -0500] "GET /examples HTTP/1.1" 404 274 Here's what the error log says: [Tue Nov 05 13:44:37 2002] [notice] Apache/2.0.43 (Unix) mod_jk/1.2.0 configured -- resuming normal operations [Tue Nov 05 13:44:5

Re: JDBC Error with Tomcat 4.0.6

2002-11-05 Thread John Mattos
anyone? All, I need a little help with this one. I'm porting an app to Tomcat 4.0.6 from WebSphere 4.03 and I'm getting a JDBC Error, java.sql.SQLException: [Microsoft][SQLServer JDBC Driver]Error establishing socket. I've included a bit about my app to see if anyone can help me figure out w

RE: MBeans exception and mod_jk

2002-11-05 Thread Aryeh Katz
> > Moving Tomcat might help, but if you are getting an apache 404, that > means that Apache doesn't know what to do with > http://localhost/examples, even though your httpd.conf clearly has a > virtual host for localhost and the requisite JkMount statements. > Not so fast. His JkMount command do

Re: Installing and using manager app in 4.1.12

2002-11-05 Thread Aryeh Katz
snip > > The result is a blank white page and an error message that says "FAIL > - Unknown command /". > You're not missing anything, you just didn't issue a command. try doing a /list and see what happens :-). Aryeh --- Aryeh Katz VASCO www.vasco.com -- To unsub

Problem running the examples..

2002-11-05 Thread Pavan Kumar Anumula
hi, I have successfully installed the jakarta-tomcat-4.1.12 on Unix. I am able to see the index.jsp (welcome page of tomcat 4.1.12). when i try to run the example servlets i get HTTP 404 exception. when i try to run the jsp's i get 500 exception status..something not found. i would apprec

Error with new install

2002-11-05 Thread Ronald Aronica
I just installed Tomcat 4.1.12 with JDK 1.4.1 and am running into a problem when trying to use the manager. I receive a server error 500 with the following: org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet err

Re: MBeans exception and mod_jk

2002-11-05 Thread Mark Diana
Another thought: Could it be mod_jk.so itself? I built it on my machine using a script I got for building it for Apache 1.3 which I modified to use APXS from Apache 2.0.43. I did that because it appears that the binary from the jakarta web site is for Apache2.0.42 only (but that is not at al

RE: MBeans exception and mod_jk

2002-11-05 Thread Turner, John
Moving Tomcat might help, but if you are getting an apache 404, that means that Apache doesn't know what to do with http://localhost/examples, even though your httpd.conf clearly has a virtual host for localhost and the requisite JkMount statements. The next thing I would try is just taking mod_j

Re: MBeans exception and mod_jk

2002-11-05 Thread Mark Diana
Yes, it's an Apache 404, and I can access all the local documentation for Apache at http://localhost (I haven't put anything else in there yet). Would it possibly have anything to do with the location of Tomcat? I did make myself the owner of all of Tomcat's files, but I installed them in /Lib

Packages at Tomcat 4.0.6 vs 5.0

2002-11-05 Thread Ronaldo Juliatto
Fellows Recently I installed Tomcat 5.0, and noticed that I could not run anymore JSP whose classes did not use packages. A simple "Hello, world" program needed to be implemented in a package to be understood by the Java compiler. What could be wrong? Thanks in advance Ronaldo Juliatto

Installing and using manager app in 4.1.12

2002-11-05 Thread Turner, John
This is my first foray into the world of the Tomcat manager app. Any help is appreciated. I've been using this guide: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/manager-howto.html I've modified conf/tomcat-users.xml: I added a new role named "manager", as I wasn't clear on whether the exis

Running Tomcat via JRockit as a service

2002-11-05 Thread Scott Moore
I'm running Tomcat 3.3.1 as a service using jk_nt_service.exe. The problem I've had in the past has been when you log out of the computer, the JVM gets killed. Starting with Sun's JVM 1.3.1_02, if I use the parameter -Xrs on the command line for JVM startup in wrapper.properties, this issue is fi

Re: MBeans exception and mod_jk

2002-11-05 Thread Jeff Tulley
I get the MBean exception but still have Apache / Tomcat connectivity via the AJP13Connector. It is probably not related. You might try using the Coyote Jk Handler, since it is compatible with mod_jk (we had not realized that the two would work together, and that was the only reason to move on

RE: JK2 Solaris 8 binary available

2002-11-05 Thread Brzezinski, Paul J
: -Original Message- : From: Turner, John [mailto:JTurner@;AAS.com] : Sent: Tuesday, November 05, 2002 2:20 PM : To: '[EMAIL PROTECTED]' : Subject: JK2 Solaris 8 binary available : : : : I've posted a JK2 binary for Solaris 8 (SPARC). : : http://www.johnturner.com/howto : : Built

Re: compiling mod_jk under AIX

2002-11-05 Thread Maureen Barger
Thanks. I have googled and see lots of folks with the error but none with the solution. Same with the archives. I am using apache 1.3.14 but my systems group should be pushing 1.3.26 out later today or tomorrow. So John Turner's links don't help -- I tried that too ;-) Now I have discovered t

RE: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Milt Epstein
On Tue, 5 Nov 2002, Turner, John wrote: > Stick a file called "index.html" in the directory where you want > listings suppressed. > > Write a Filter to intercept all requests and look for a filename in > the request...open-ended requests like "/" or "/myapp/" would be > intercepted and redirected.

RE: MBeans exception and mod_jk

2002-11-05 Thread Turner, John
Hmm...this is a stumper. The 404 you get...it's an Apache 404? Not a Tomcat 404? The Tomcat errors have blue backgrounds on the pages. Can you access any content at all at http://localhost, besides /examples? John > -Original Message- > From: Mark Diana [mailto:mldiana@;vcu.edu] > S

Help: compile error: javax.servlet does not exist

2002-11-05 Thread Ben Austin
I am trying to compile servlets using JCreator, but it isn't working. I keep getting told that javax.servlet does not exist. I've added servlet.jar to the classpath, but nothing has changed. What else should I do? _ Unlimited Intern

Re: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Milt Epstein
On Tue, 5 Nov 2002, Marc Mendez wrote: > - Original Message - > From: "Turner, John" <[EMAIL PROTECTED]> > > > > Did you search the archives? This topic has come up several times > > before. Do some research! > > And... do read my posts ! > > 1. I browsed the archive > 2. The solutions d

Re: MBeans exception and mod_jk

2002-11-05 Thread Mark Diana
Sorry, workers.properties: # Setup for Mac OS X workers.tomcat_home=/Library/Tomcat/Home workers.java_home=/System/Library/Frameworks/JavaVM.framework/Versions/ 1.3.1/Home ps=/ worker.list=ajp13 # Definition for Ajp13 worker # worker.ajp13.port=8009 worker.ajp13.host=localhost worker.ajp13.typ

RE: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Brzezinski, Paul J
OK, have you tested this yet on Solaris 8? Can you get the ChannelUnix (AF_UNIX) socket stuff to work I haven't been able to get this to work and was hoping you'd give it a try and report results. Paul -- mailto:Paul.Brzezinski@;EDS.com Enterprise Distributed Capabilities EDS Corporation

Re: compiling mod_jk under AIX

2002-11-05 Thread Milt Epstein
On Tue, 5 Nov 2002, Maureen Barger wrote: > Has anyone done this successfully? I have tried with IBM's compiler > as well as gcc and both result in same error: > > ld: 0711-244 ERROR: No csects or exported symbols have been saved. > apxs:Break: Command failed with rc=8 > > I am running aix 4.3.3

RE: MBeans exception and mod_jk

2002-11-05 Thread Turner, John
What're the contents of workers.properties? Also, did you disble the CoyoteConnector on 8009 since you have AjpConnector enabled? John > -Original Message- > From: Mark Diana [mailto:mldiana@;vcu.edu] > Sent: Tuesday, November 05, 2002 2:23 PM > To: Tomcat Users List > Subject: Re: MBe

Re: MBeans exception and mod_jk

2002-11-05 Thread Mark Diana
OK. httpd.conf: Include /Library/Tomcat/Home/conf/auto/mod_jk.conf where /Home is a symbolic link to /Library/Tomcat/jakarta-tomcat-4.1.12. The only other thing I changed in httpd.conf was the Server Name, which I set as localhost. Sample from auto-generated mod_jk.conf: ## Auto gene

JK2 Solaris 8 binary available

2002-11-05 Thread Turner, John
I've posted a JK2 binary for Solaris 8 (SPARC). http://www.johnturner.com/howto Built against Apache 2.0.43 using latest 2.0.1 source. NOTE: I had to modify jk_channel_socket.c to get mod_jk2.so to build and have not been able to test it yet, so please understand that you are responsible for te

Re: Can't use alternate root context with Tomcat 4.1.12

2002-11-05 Thread Ian Hunter
Martin solved my weird index.jsp problem -- I had to shut tomcat down and manually clear out the $CATALINA_HOME\work directory, and start tomcat back up. -- From: "Martin Algesten" <[EMAIL PROTECTED]>

RE: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Turner, John
Thanks! That was the ticket..I had libapr-0.so, so a symlink from that to libapr.so was the solution. John > -Original Message- > From: Brzezinski, Paul J [mailto:paul.brzezinski@;eds.com] > Sent: Tuesday, November 05, 2002 12:52 PM > To: Tomcat Users List > Subject: RE: [ANNOUNCE] Sola

RE: MBeans exception and mod_jk

2002-11-05 Thread Turner, John
Aside from the MBean stuff, please post relevant portion of httpd.conf (or mod_jk.conf), workers.properties, and relevant portions of server.xml, such as your Host container and your Connector containers. Also post the URL you are trying to access if it is something different than http://localhos

RE: Tomcat and CLASSPATH

2002-11-05 Thread Cox, Charlie
I wouldn't mind a 'common-file-separate-instance' directory where each application (as allowed in some manner(web.xml?)) could load *separate instances* of a jar/class file that resides in the same loaction. This would avoid the duplication of such libraries that should not share instances. I have

RE: Tomcat and CLASSPATH

2002-11-05 Thread Cox, Charlie
> -Original Message- > From: Chris gokey [mailto:cgokey@;gcmd.nasa.gov] > Sent: Tuesday, November 05, 2002 9:25 AM > To: 'Tomcat Users List' > Subject: RE: Tomcat and CLASSPATH > > > Thanks Justin. Yes, I think you understand me correctly. I > think the > easiest way to handle a pro

RE: [Installation] silent install

2002-11-05 Thread Anthony Shawver
Right. So the question is how do I do this silently? How do I install Tomcat 4.1.12 on Windows, select the proper configuration below, all without any user interaction through a UI? Tony -Original Message- From: Turner, John [mailto:JTurner@;AAS.com] Sent: Tuesday, November 05, 2002 1:1

MBeans exception and mod_jk

2002-11-05 Thread Mark Diana
Folks, OK, I hate to do this, but I've searched the archives and monitored this list for a few weeks now, and I still can't get this to work. I want to set up Apache and Tomcat on my G4 Mac with OSX 10.2.1 for development (I want to eventually have the same set up on my production RedHat m

Performance Test

2002-11-05 Thread Ganesh
Hi All, We are testing our software on jakarta-tomcat-4.1.10 under different environment (Windows, Linux, Solaris). When we run the performance test (50 user login and do some operation like send mail, read mail etc. and logoff), the JVM size is keep on increasing and the response time is als

RE: Building mod_jk

2002-11-05 Thread Turner, John
/wherever/you/unpacked/the/source/jk/native/BUILDING In short: ./configure --with-apxs=/some/path/to/apache/bin/apxs make John > -Original Message- > From: [EMAIL PROTECTED] [mailto:developer@;wexwarez.com] > Sent: Tuesday, November 05, 2002 1:46 PM > To: Tomcat Users List > Subject:

Building mod_jk

2002-11-05 Thread developer
I want to build mod_jk on my linux box. I downloaded and untarred the src. Where are the build instructions and docs On jakarata the only docs just say download and look for instructions. thanks -- To unsubscribe, e-mail: For addit

RE: digest authentication or DIGEST

2002-11-05 Thread Koes, Derrick
Leave the in the web.xml as BASIC. -Original Message- From: Frank Balluffi [mailto:frank.balluffi@;db.com] Sent: Monday, November 04, 2002 6:01 PM To: [EMAIL PROTECTED] Subject: digest authentication or DIGEST I am able to successfully configure Tomcat 4.1.12 to use basic authenticat

[HOWTO] Apache 2.0.43 + Tomcat 4.1.12 on Solaris 8

2002-11-05 Thread Turner, John
I've posted a HOWTO for Solaris 8. http://www.johnturner.com/howto It covers using JK with Apache 2.0.43 and Tomcat 4.1.12, with Apache and mod_jk being built from source. Comments and suggestions welcome. - John John Turner [EMAIL PROTECTED] | 248

RE: [Installation] silent install

2002-11-05 Thread Turner, John
You'll also need checks to verify a working and properly configured J2SE (with JAVA_HOME set). John > -Original Message- > From: Anthony Shawver [mailto:ashawver@;actaview.com] > Sent: Tuesday, November 05, 2002 1:16 PM > To: Tomcat Users List > Subject: RE: [Installation] silent instal

RE: [Installation] silent install

2002-11-05 Thread Anthony Shawver
I am looking to pass all the necessary parameters to the Windows install so that no UI's pop up to the user. For the Tomcat install, here are the things that I need to pass: 1) Install directory 2) Which options (i.e. NT service or not) to "check" 3) The params for the http port (not necessary for

RE: [Installation] silent install

2002-11-05 Thread Aryeh Katz
> I didn't author this original email, but I asked an earlier question > regarding silent installs. I am looking for functionality similar to > the Java silent install listed here: I assumed that's what the OP meant, until they added that they wanted this for UNIX. Last I checked, install shield w

RE: [Installation] silent install

2002-11-05 Thread François Vallet
Thanks a lot tony ! > -Original Message- > From: Anthony Shawver [mailto:ashawver@;actaview.com] > Sent: mardi 5 novembre 2002 18:49 > To: Tomcat Users List > Subject: RE: [Installation] silent install > > I didn't author this original email, but I asked an earlier question > regarding s

RE: URGENT= Problem with Session Cookie

2002-11-05 Thread Larry Isaacs
Does "I call" mean the user clicks something in the browser? I would assume not, but beyond that I can only guess. What exactly does "I call" mean you are doing? Cheers, Larry > -Original Message- > From: [EMAIL PROTECTED] [mailto:afreire@;banelco.com.ar] > Sent: Tuesday, November 05, 2

RE: [Installation] silent install

2002-11-05 Thread Turner, John
A binary install of Tomcat is self-contained. The only intervention needed, assuming there is a working J2SE present, is to set CATALINA_HOME to the install location. That's the only thing required to get Tomcat to startup. I'm not sure how it could be more silent than that. A shell script for

RE: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Brzezinski, Paul J
I'm going to step out on a limb and say that libapr.so doesn't exist -- if you built everything from source, look for libapr-*.so* in the apache lib-dir and either do a symbolic link from libapr-*.so to libapr.so in /lib, then do your make again. Paul -- mailto:Paul.Brzezinski@;EDS.com Enterpris

RE: [Installation] silent install

2002-11-05 Thread Anthony Shawver
I didn't author this original email, but I asked an earlier question regarding silent installs. I am looking for functionality similar to the Java silent install listed here: http://java.sun.com/j2se/1.4/docs/guide/plugin/developer_guide/silent.html Tony -Original Message- From: Turner,

RE: mod_jk

2002-11-05 Thread Turner, John
Current: http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/v1.2.0 / Archived (various OS, version of Apache and Tomcat, use the Current link first): http://www.johnturner.com/howto John > -Original Message- > From: Pedro Igor Craveiro e Silva [mailto:pedroigor@;aip.

RE: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Turner, John
So far I have run into a problem in jk_channel_socket.c where FIONBIO isn't defined, but it's used in jk2_channel_socket_open(). I fixed this by adding a couple of #include lines to jk_channel_socket.c. Then I ran into a problem with make, where it ran for quite awhile and seemed to be moving ri

mod_jk

2002-11-05 Thread Pedro Igor Craveiro e Silva
Some body have this mod_jk ??? Or any place where i can find it ... Pedro Igor

Re: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Brzezinski, Paul J
Turner, John wrote: I finally got access to a Solaris 8 server. I've posted a mod_jk binary (mod_jk.so) for Solaris 8 at: http://www.johnturner.com/howto This is mod_jk compiled against Apache 2.0.43 and using the JK Connector source v1.2.0. Tested against Tomcat 4.1.12. I'm having problems

RE: [Installation] silent install

2002-11-05 Thread Turner, John
What do you mean by "silent"? John > -Original Message- > From: François Vallet [mailto:fvallet@;infovista.com] > Sent: Tuesday, November 05, 2002 12:05 PM > To: 'Tomcat Users List' > Subject: [Installation] silent install > > > Who have been succeed to create a silent install of tomc

RE: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Turner, John
> -Original Message- > From: Marc Mendez [mailto:mendez@;lug.com] > Sent: Tuesday, November 05, 2002 12:13 PM > To: Tomcat Users List > Subject: Re: Standalone Tomcat : suppress directory listing in web.xml > > > > Stick a file called "index.html" in the directory where you > want listi

Re: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Craig R. McClanahan
On Tue, 5 Nov 2002, Marc Mendez wrote: > Date: Tue, 5 Nov 2002 18:13:08 +0100 > From: Marc Mendez <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: Tomcat Users List <[EMAIL PROTECTED]> > Subject: Re: Standalone Tomcat : suppress directory listing in web.xml > > > Stick

RE: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Turner, John
OK, thanks. John > -Original Message- > From: Henri Gomez [mailto:hgomez@;apache.org] > Sent: Tuesday, November 05, 2002 11:55 AM > To: [EMAIL PROTECTED] > Subject: RE: [ANNOUNCE] Solaris 8 JK Binary available > > > You should address problem about jk2 built under Solaris 8 > in tomca

Connection pool question:

2002-11-05 Thread Michael Nicholson
I'm building a webapp, and I want to use connection pooling with it. In order to play around some, I made a dummy webapp that does virtually nothing, but uses the connection pool. So then I cut and pasted some code out into the bigger webapp, but now I get this error: MonitorFilter::java.lang

RE: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Henri Gomez
You should address problem about jk2 built under Solaris 8 in tomcat-dev, I'm not sure Mladen track also tomcat-user. -- To unsubscribe, e-mail: For additional commands, e-mail:

IRIX 6.5 JK Binary Available

2002-11-05 Thread Turner, John
Thanks to Manuel González Castro, a JK (mod_jk) binary for IRIX 6.5 has been posted. It's for Apache 2.0.43. http://www.johnturner.com/howto - John -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Turner, John
Strange...I looked this morning in that exact location and didn't see it. Sorry. Are there any updates on JK2 for Solaris? Has anyone successfully built it? I've been trying all morning without any luck, even had to change some of the source. John > -Original Message- > From: Henri Gom

Re: Multiple instances of Tomcat

2002-11-05 Thread Pedro Igor Craveiro e Silva
Thanks ... The page that you have send me is what i was looking for ... Thanks a lot I 'll try it ... Pedro Igor - Original Message - From: "Turner, John" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Tuesday, November 05, 2002 9:50 AM Subject: RE: Multiple

RE: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Turner, John
Stick a file called "index.html" in the directory where you want listings suppressed. Write a Filter to intercept all requests and look for a filename in the request...open-ended requests like "/" or "/myapp/" would be intercepted and redirected. Make sure you have a welcome file list setup in y

RE: [ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Henri Gomez
There was allready available on normal distro ... http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/v1.2.0/bin/solaris8/ But we still need solaris 6 binaries -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Marc Mendez
- Original Message - From: "Turner, John" <[EMAIL PROTECTED]> > > Did you search the archives? This topic has come up several times before. > Do some research! And... do read my posts ! 1. I browsed the archive 2. The solutions does not work. I want to change the web.xml of the app. I

[ANNOUNCE] Solaris 8 JK Binary available

2002-11-05 Thread Turner, John
I finally got access to a Solaris 8 server. I've posted a mod_jk binary (mod_jk.so) for Solaris 8 at: http://www.johnturner.com/howto This is mod_jk compiled against Apache 2.0.43 and using the JK Connector source v1.2.0. Tested against Tomcat 4.1.12. I'm having problems building mod_jk2.so,

Re: Authentication per-container level

2002-11-05 Thread Rodrigo Ruiz
> Hello, > > Is it possible to configure Tomcat, that it must check an authentication > for all the webapps hosted > within the container ? > I mean tell Tomcat to send an authentication popup when someone goes to > the http://localhost:8080/. > whithout configure each webapp hosted in. You ca

RE: compiling mod_jk under AIX

2002-11-05 Thread Turner, John
Which Apache? There are mod_jk.so binaries for AIX on my site: http://www.johnturner.com/howto Might be worth a try. That said, what configure options did you use when trying the build? John > -Original Message- > From: Maureen Barger [mailto:mf12@;cornell.edu] > Sent: Tuesday, No

  1   2   >