Building tomcat-connectors with ANT

2005-06-27 Thread BATCHELOR, SCOTT \(CONTRACTOR\)
Has anyone been successful in this? The documentation seems to be very scarce to say the least. -SB - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Building tomcat-connectors with ANT

2005-06-27 Thread Mark Thomas
BATCHELOR, SCOTT (CONTRACTOR) wrote: Has anyone been successful in this? Yes. Regularly. 4.1.x, 5.0.x and 5.5.x Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Building tomcat-connectors with ANT

2005-06-27 Thread BATCHELOR, SCOTT \(CONTRACTOR\)
Would you mind pointing me in the right direction for some docs? I really only want to build mod_jk Thanks, -SB -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Monday, June 27, 2005 2:08 PM To: Tomcat Users List Subject: Re: Building tomcat-connectors with ANT

Re: Building tomcat-connectors with ANT

2005-06-27 Thread Mark Thomas
Ah. It wasn't clear from your original post which part of the connectors you were trying to build. I was referring to the Tomcat end of things (the Java AJP/HTTP connectors) rather than mod_jk. The following from the dev list might help. Failing that, with the clarification of what it is you

RE: Building tomcat-connectors with ANT

2005-06-27 Thread BATCHELOR, SCOTT \(CONTRACTOR\)
To: Tomcat Users List Subject: Re: Building tomcat-connectors with ANT Ah. It wasn't clear from your original post which part of the connectors you were trying to build. I was referring to the Tomcat end of things (the Java AJP/HTTP connectors) rather than mod_jk. The following from the dev list might

Re: Building tomcat-connectors with ANT

2005-06-27 Thread Mark Thomas
: Building tomcat-connectors with ANT Ah. It wasn't clear from your original post which part of the connectors you were trying to build. I was referring to the Tomcat end of things (the Java AJP/HTTP connectors) rather than mod_jk. The following from the dev list might help. Failing

Re: Building tomcat-connectors with ANT

2005-06-27 Thread Bill Barker
Mark Thomas [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Ah. It wasn't clear from your original post which part of the connectors you were trying to build. I was referring to the Tomcat end of things (the Java AJP/HTTP connectors) rather than mod_jk. The following from

Re: Admin Application messes up HTTPS Connectors in server.xml

2005-05-16 Thread Ankit Shah
:16:01 +0200 - To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: Admin Application messes up HTTPS Connectors in server.xml Hey Ankit, can it be that you forget the secure=true attribute at your https connector? I have look inside Http11Protocol code and find this: public

Re: Admin Application messes up HTTPS Connectors in server.xml

2005-05-16 Thread Ankit Shah
:16:01 +0200 - To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: Admin Application messes up HTTPS Connectors in server.xml Hey Ankit, can it be that you forget the secure=true attribute at your https connector? I have look inside Http11Protocol code and find this: public

Re: Admin Application messes up HTTPS Connectors in server.xml

2005-05-16 Thread Peter Rossbach
Message from Peter Rossbach [EMAIL PROTECTED] on Sun, 15 May 2005 20:16:01 +0200 - To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: Admin Application messes up HTTPS Connectors in server.xml Hey Ankit, can it be that you forget the secure=true attribute at your https

Re: Admin Application messes up HTTPS Connectors in server.xml

2005-05-15 Thread Peter Rossbach
and breaking Connector element config from server.xml Thanks Peter Ankit Shah schrieb: Hi, The Tomcat admin utility doesn't save the HTTPS connectors properly. It misses out the 'sslProtocol' attribute and this results in the failed connector. Does anyone have a fix around this? The following

Admin Application messes up HTTPS Connectors in server.xml

2005-05-12 Thread Ankit Shah
Hi, The Tomcat admin utility doesn't save the HTTPS connectors properly. It misses out the 'sslProtocol' attribute and this results in the failed connector. Does anyone have a fix around this? The following is the current state of our server: Tomcat 5.5.9 with 1.4.2 compatibility add-on. JRE

Re: tomcat connectors

2005-04-28 Thread Patty O'Reilly
tomcat-user@jakarta.apache.org To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: tomcat connectors Patty O'Reilly wrote: Thanks very much for responding. I'm still stuggling with an ever growing number of connections to the apache server and an ever growing number of threads

Embedded Tomcat - adding Connectors on the fly

2005-04-26 Thread Sander A. Smith
I have a copy of Tomcat embedded inside my application, and it runs great. During the processing, I'd like to open another port to service requests on. The documentation on the Embedded object states: After normal operations have begun, you can add and remove Connectors, Engines, Hosts

Re: tomcat connectors

2005-04-25 Thread Patty O'Reilly
Turk wrote: Date: Sat, 23 Apr 2005 10:21:27 +0200 From: Mladen Turk [EMAIL PROTECTED] Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: tomcat connectors Patty O'Reilly wrote: Thanks very much for responding. I'm

Re: tomcat connectors

2005-04-23 Thread Mladen Turk
Patty O'Reilly wrote: Thanks very much for responding. I'm still stuggling with an ever growing number of connections to the apache server and an ever growing number of threads on my tomcat server. I'm fairly certain it is not the application. I have all three timeouts set but no joy.

Re: tomcat connectors

2005-04-22 Thread Lionel Farbos
Hi, As described here : http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html the goal of socket_timeout is very different than recyle_timeout : socket_timeout is a timeout during the activity (between apache and tomcat) recycle_timeout is a timeout after the activity; when

Adding Connectors to embedded Tomcat on the fly

2005-04-22 Thread Sander A. Smith
I've got an embedded Tomcat application that's running on 5.0.24 and it works great. Something I need to do is open and close ports while the application runs. The documentation says that you can do this on the fly in the form of adding/deleting Connectors to the Embedded object. I've got

Re: tomcat connectors

2005-04-22 Thread Patty O'Reilly
] To: Tomcat Users List tomcat-user@jakarta.apache.org Cc: [EMAIL PROTECTED] Subject: Re: tomcat connectors Hi, As described here : http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html the goal of socket_timeout is very different than recyle_timeout : socket_timeout is a timeout

Re: Connectors

2005-04-20 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/ http://jakarta.apache.org/tomcat/connectors-doc/ -Tim edwin roberts wrote: Greetings, I need some help on testing. Please advise which connector i should use for apache 2.044 and tomcat 4.1.24. If possible, a link to a installation guide will be helpful

tomcat connectors

2005-04-20 Thread Patty O'Reilly
The descriptions of recycle_timeout and socket_timeout seem very similar in the Jakarta Tomcat Connector doc. Does anyone know when you would use one over the other, or should both directives be used together? I'm using 1.2.8 for Apache 2.0.52 + RHAS3. Many thanks --patty

Connectors

2005-04-19 Thread edwin roberts
Greetings, I need some help on testing. Please advise which connector i should use for apache 2.044 and tomcat 4.1.24. If possible, a link to a installation guide will be helpful. Thanks - Yahoo! Mail Mobile Take Yahoo! Mail with you! Check

Jakarta-tomcat-connectors-1.2.10-src error

2005-04-04 Thread Vaneet Sharma
I am getting error in error_log No JkShmFile defined in httpd.conf. LoadBalancer will not function properly! I am using new Jk Connector.. With tomcat 5.5.7 Jakarta connector -1.2.8 is working well with 5.5.7 on my other machine... ( so configuration is fine and working well ) Something

RE: Jakarta-tomcat-connectors-1.2.10-src error

2005-04-04 Thread Phillip Qin
This is introduced by jk 1.2.10. Simply add into your httpd.conf JkShmFile logs/mod_jk.shm shall fix this error. -Original Message- From: Vaneet Sharma [mailto:[EMAIL PROTECTED] Sent: April 4, 2005 8:54 AM To: Tomcat Users List Subject: Jakarta-tomcat-connectors-1.2.10-src error I

[ANN] Jakarta Tomcat Connectors 1.2.8-rc-1 released

2004-12-20 Thread Mladen Turk
The Apache Jakarta Tomcat team is proud to announce the immediate availability of Jakarta Tomcat Connectors 1.2.8-rc-1 (Relase Canditate 1). We expect it to be ratified as a Stable release when the vote takes place in the next week. Please see the http://jakarta.apache.org/tomcat/connectors

[ANN] Jakarta Tomcat Connectors 1.2.7-beta-2 released

2004-12-07 Thread Mladen Turk
The Apache Jakarta Tomcat team is proud to announce the immediate availability of Jakarta Tomcat Connectors 1.2.7-beta-2. The release contains a fixes to few compilation problems detected with JK-1.2.7-beta version. This release also introduces a new domain concept clustering support. See

Re: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-02 Thread Eirik Øverby
chose a beta version of Tomcat, as opposed to a stable version, for such an important application. However, that's irrelevant to this discussion. However, the key here is that the connector (more specifically around line 520 in jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Response.ja

RE: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-02 Thread Shapira, Yoav
Hi, When you get a chance, please read http://www.river.com/users/share/etiquette/#quotes -- it's helpful and appreciated on this list ;) Until now I have simply placed the tomcat-coyote.jar file into server/lib; this has worked fine. However, when following your suggestion (placing the modified

Re: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-02 Thread Eirik Øverby
Shapira, Yoav wrote: Hi, When you get a chance, please read http://www.river.com/users/share/etiquette/#quotes -- it's helpful and appreciated on this list ;) I'm sorry; I'm following several mailing lists, and the etiquette expected varies slightly. I will keep this in mind ;) /Eirik

Re: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-02 Thread QM
On Thu, Dec 02, 2004 at 03:26:39PM +0100, Eirik ?verby wrote: : http://www.river.com/users/share/etiquette/#quotes -- it's helpful and : appreciated on this list ;) : : I'm sorry; I'm following several mailing lists, and the etiquette : expected varies slightly. I will keep this in mind ;)

Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Eirik Øverby
-etiquette to have your app accept a Content-Type string with or without that space. Yes, I therefore know, it's their server - which sends the request to us - that has a lousy implementation. However, the key here is that the connector (more specifically around line 520 in jakarta-tomcat-connectors/coyote

RE: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Arnab Chakravarty
: Wednesday, December 01, 2004 11:15 PM To: [EMAIL PROTECTED] Subject: Content-Type rewriting in jakarta-tomcat-connectors Hi, After upgrading from tomcat 4.1 to 5.0, a critical application here has stopped working as expected. Upon replying to incoming requests, it would usually spit out the following

Re: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Eirik Øverby
] Subject: Content-Type rewriting in jakarta-tomcat-connectors Hi, After upgrading from tomcat 4.1 to 5.0, a critical application here has stopped working as expected. Upon replying to incoming requests, it would usually spit out the following - just like the servlet says: Content-Type: application/xml

Re: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Eirik Øverby
- From: Eirik Øverby [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 11:15 PM To: [EMAIL PROTECTED] Subject: Content-Type rewriting in jakarta-tomcat-connectors Hi, After upgrading from tomcat 4.1 to 5.0, a critical application here has stopped working as expected. Upon replying

RE: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Shapira, Yoav
, as opposed to a stable version, for such an important application. However, that's irrelevant to this discussion. However, the key here is that the connector (more specifically around line 520 in jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Response.ja va) is rewriting the carefully

Re: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Eirik Øverby
is that the connector (more specifically around line 520 in jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Response.ja va) is rewriting the carefully-constructed Content-Type string in a way that 1: I didn't ask for and 2: wasn't done in 4.1. So you've identified the specific location

RE: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Shapira, Yoav
Hi, Well that's the thing.. It was tested, worked, but then the other end changed their stuff in a way that turned out to be incompatible. In any Gotta love it ;) I was actually of the impression that 5.0.29 was *not* a beta release; possibly because it is the only current version available in

Re: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Eirik Øverby
Hi again, Shapira, Yoav wrote: Hi, Well that's the thing.. It was tested, worked, but then the other end changed their stuff in a way that turned out to be incompatible. In any Gotta love it ;) I was actually of the impression that 5.0.29 was *not* a beta release; possibly because it is the

RE: Content-Type rewriting in jakarta-tomcat-connectors

2004-12-01 Thread Shapira, Yoav
Hi, Anything I can do to increase the probability of this happening? Like, filing a bug report or feature request or whatever it should be called? Note that this also happens if you run Tomcat as a standalone HTTP/HTTPS server.. You can file a bug report which would decrease the probability of

Re: [ANN] Jakarta Tomcat Connectors 1.2.7-beta released

2004-11-30 Thread David Boyer
Tomcat Connectors 1.2.7-beta. The release contains a significant number of bug fixes and new features. We expect it to be ratified as a Stable release when the vote takes place in the next two weeks. Please see the http://jakarta.apache.org/tomcat/connectors-doc/changelog.html for a full list

multiple connectors issues

2004-11-04 Thread Michal Kwiatek
Hi All, 1. Can you tell me what impact on performance has using many connectors? I need to run additional two connectors (for http and https) to allow some request to be understood as proxied, and others as direct. See the code below. 2. Do request to different connectors share the same session

RE: multiple connectors issues

2004-11-04 Thread Shapira, Yoav
Hi, 1. Can you tell me what impact on performance has using many connectors? It's largely dwarfed by your app's performance characteristics, unless you're talking about dozens or more connectors. For three or four, it's no big deal. 2. Do request to different connectors share the same session

RE: multiple connectors issues

2004-11-04 Thread Michal Kwiatek
Yoav, 2. Do request to different connectors share the same session scope? Isn't this so simple to test that it's faster than asking the list? ;) You're right. I'm getting lazy... So here's the result of my check: multiple connectors share session data. In fact, what counts

RE: multiple connectors issues

2004-11-04 Thread Shapira, Yoav
Hi, 2. Do request to different connectors share the same session scope? Isn't this so simple to test that it's faster than asking the list? ;) You're right. I'm getting lazy... So here's the result of my check: multiple connectors share session data. In fact, what counts is the request

Problems with jakarta-tomcat-connectors-jk2-2.0.[24]-src/jk/native2/configure and HP-UX 11.0

2004-10-04 Thread HORSTMAN, MARK A \(SBCSI\)
I cannot get the jk/native2/configure script that comes with jakarta-tomcat-connectors-jk2-2.0.4-src (or jakarta-tomcat-connectors-jk2-2.0.2-src) to work without errors under HP-UX 11.0. The problems occur when the script does something like: if ${TEST} ${apxs_support} = false

Building 5.0.27 fails in connectors/util

2004-08-20 Thread Arthur van Dorp
/Documents/Downloads/jakarta/jakarta-tomcat-5.0.27-src/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/digester/CallMethodRule.java:520: cannot resolve symbol [javac] symbol : method convert (java.lang.String,java.lang.Class) [javac] location: class

RE: Building 5.0.27 fails in connectors/util

2004-08-20 Thread Shapira, Yoav
[mailto:[EMAIL PROTECTED] Sent: Friday, August 20, 2004 3:59 PM To: [EMAIL PROTECTED] Subject: Building 5.0.27 fails in connectors/util I'm trying to build Tomcat 5.0.27 on SuSE Linux 9.0 with ant 1.6.2 and Suns javac 1.4.2. It fails with the following messages: [javac] Compiling 57 source

Re: Building 5.0.27 fails in connectors/util

2004-08-20 Thread Arthur van Dorp
Hi. Thank you for your answer. Looks like a mismatch between the beanutils version on your classpath and the one expected by Tomcat. How did you configure the build? You should be able to just do ant download update build. I've downloaded

Re: Building 5.0.27 fails in connectors/util

2004-08-20 Thread Arthur van Dorp
: [javac] Compiling 57 source files to /home/arthur/Documents/Downloads/jakarta/jakarta-tomcat-5.0.27-src/jakarta-tomcat-5/build/classes [javac] /home/arthur/Documents/Downloads/jakarta/jakarta-tomcat-5.0.27-src/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/digester

Request: Webpage update jakarta.apache.org/tomcat/connectors-doc /jk2/jk2/ for IIS-Setup

2004-08-11 Thread Bjoern . Andersen
Hi Webmasters of that site, Some errors re: Setup on Windows/IIS/JK2 (2.0.4) took me a week to find out. Please correct! See resolved Bug [Bug 30383] Problem was that the Website was outdated. The info on http://jakarta.apache.org/tomcat/connectors-doc/jk2/jk2/ configwebcom.html

RE: Request: Webpage update jakarta.apache.org/tomcat/connectors-doc/jk2/jk2/ for IIS-Setup

2004-08-11 Thread Shapira, Yoav
To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Request: Webpage update jakarta.apache.org/tomcat/connectors- doc/jk2/jk2/ for IIS-Setup Hi Webmasters of that site, Some errors re: Setup on Windows/IIS/JK2 (2.0.4) took me a week to find out. Please correct! See resolved Bug [Bug 30383

Wrong Source-Codes for jakarta-tomcat-connectors-jk-1.2-src-curr ent.tar.gz ?

2004-07-22 Thread Nagel, Andre
Hello everyone! Last time mailed I Had problems with jakarta-tomcat-connectors-jk-1.2-src-current.tar.gz, and I still have. I told you I found out that there ist a ':' too much in Makefile.in for the connector. I removed it, and then make works little better, but ends up with followig error

Makefile for jakarta-tomcat-connectors-jk-1.2.5-src

2004-07-20 Thread Nagel, Andre
Hello! This is my first time ever being on a mailing list, so please forgive me mistakes, if I do some... I nearly got crazy while compiling jakarta-tomcat-connectors-jk-1.2.5-src to get mod_jk.so on my Solaris 8 SPARC. I found many HowTo's, but none did work, I always got following error

Re: apache2 crashes when using connectors - nobody?

2004-07-06 Thread Andy Spiegl
: apache2-jakarta-tomcat-connectors-4.1.27-63.i586.rpm apache2-jakarta-tomcat-connectors-4.1.27.tgz and http://www.apache.de/dist/jakarta/tomcat-connectors/jk2/binaries/linux/Suse-9.0-i386.tar.gz Thank you for any help! Andy. -- o _ _ _ --- __o

Re: apache2 crashes when using connectors - nobody?

2004-07-06 Thread David Smith
: apache2-jakarta-tomcat-connectors-4.1.27-63.i586.rpm apache2-jakarta-tomcat-connectors-4.1.27.tgz and http://www.apache.de/dist/jakarta/tomcat-connectors/jk2/binaries/linux/Suse-9.0-i386.tar.gz Thank you for any help! Andy

Re: apache2 crashes when using connectors - nobody?

2004-07-06 Thread Andy Spiegl
The name you gave your workers in workers.properties has to be used in you JkMount statements. Oops, thanks. But could that be the reason for a complete crash? Andy. -- o _ _ _ --- __o __o /\_ _ \\o (_)\__/o (_) -o)

Re: apache2 crashes when using connectors - nobody?

2004-07-06 Thread David Smith
Sorry, I don't know. I haven't had that problem (one of the few I haven't had the pleasure of). It would most likely cause that last error message in your mod_jk.log file though: [jk_uri_worker_map.c (619)]: In jk_uri_worker_map_t::map_uri_to_worker, wrong parameters --David Andy Spiegl

apache2 crashes when using connectors - nobody?

2004-07-02 Thread Andy Spiegl
documentation and web resources but couldn't find any pointers to why that is so. I have tried pretty much all versions of the connector modules I could find but apache always crashes like this. For now I chose the mod_proxy method to serve the jsp files, but I'd prefer the connectors. Could some kind

Re: apache2 crashes when using connectors - nobody?

2004-07-02 Thread David Smith
but couldn't find any pointers to why that is so. I have tried pretty much all versions of the connector modules I could find but apache always crashes like this. For now I chose the mod_proxy method to serve the jsp files, but I'd prefer the connectors. Could some kind soul please point me

RE: apache2 crashes when using connectors - nobody?

2004-07-02 Thread Cox, Charlie
[mailto:[EMAIL PROTECTED] Sent: Friday, July 02, 2004 4:46 AM To: [EMAIL PROTECTED] Subject: apache2 crashes when using connectors - nobody? Hm, nobody out there who has seen this problem before and might be able to help me? I installed tomcat-4.1.30 on a SuSE 9 box. So far so good

apache2 crashes when using connectors

2004-06-30 Thread Andy Spiegl
have tried pretty much all versions of the connector modules I could find but apache always crashes like this. For now I chose the mod_proxy method to serve the jsp files, but I'd prefer the connectors. Could some kind soul please point me to the solution. Thanks in advance, Andy

problem compiling jakarta-tomcat-connectors-jk2-2.0.4 native Module

2004-06-14 Thread Evan Read
/jk2/apache2/mod_jk2.la `pwd`/../../../build/jk2/apache2//usr/local/qut/bpr/httpd2/modules /sbin/cp ../../../build/jk2/apache2/.libs/libmod_jk2.so /usr/local/qut/bpr/appsrc/jakarta-tomcat-connectors-jk2-2.0.4-src/jk/native2/server/apache2/../../../build/jk2/apache2//usr/local/qut/bpr/httpd2/modules

Resend: [Fwd: problem compiling jakarta-tomcat-connectors-jk2-2.0.4 native Module]

2004-06-14 Thread Evan Read
mod_jk2.la) /usr/local/qut/bpr/httpd2/build/libtool --mode=install /sbin/cp ../../../build/jk2/apache2/mod_jk2.la `pwd`/../../../build/jk2/apache2//usr/local/qut/bpr/httpd2/modules /sbin/cp ../../../build/jk2/apache2/.libs/libmod_jk2.so /usr/local/qut/bpr/appsrc/jakarta-tomcat-connectors-jk2-2.0.4-src/jk

Re: Resend: [Fwd: problem compiling jakarta-tomcat-connectors-jk2-2.0.4 native Module]

2004-06-14 Thread David Smith
-connectors-jk2-2.0.4-src/jk/native2/server/apache2/../../../build/jk2/apache2//usr/local/qut/bpr/httpd2/modules/libmod_jk2.so /sbin/cp ../../../build/jk2/apache2/.libs/mod_jk2.lai /usr/local/qut/bpr/appsrc/jakarta-tomcat-connectors-jk2-2.0.4-src/jk/native2/server/apache2/../../../build/jk2/apache2//usr

Build Problem - jakarta-tomcat-connectors-4.1.30-src

2004-06-09 Thread Evan Read
Hi everyone. I am trying to build jakarta-tomcat-connectors-4.1.30-src. I get the following errors (mainly unresolved symbols) and I am not sure why. Obviously it can't find the right packages, but I thought the Servlet Java stuff was implimented in Tomcat itself. Do I need another package

RE: Build Problem - jakarta-tomcat-connectors-4.1.30-src

2004-06-09 Thread Kommuru, Bhaskar
and tell me :-) -Original Message- From: Evan Read [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 09, 2004 8:51 AM To: [EMAIL PROTECTED] Subject: Build Problem - jakarta-tomcat-connectors-4.1.30-src Hi everyone. I am trying to build jakarta-tomcat-connectors-4.1.30-src. I get

Re: Build Problem - jakarta-tomcat-connectors-4.1.30-src

2004-06-09 Thread Evan Read
in the connectors source directory. The Build is now successful (with your help) but this file is not being created. Do I need something further defined? Thanks for your help. Kommuru, Bhaskar wrote: Do you have j2ee downloaded as well? As you know, It is looking for servlet package. I am not sure where

greaceful shutdown of mod_jk2 connectors

2004-05-13 Thread Mike Batting
connections to the socket I am attempting to shutdown. if I am missing something... or if I need an updated version of the mod_jk2 connector... please let me know. I am running: -apache2 version 2.0.48 -jakarta tomcat connectors version 2.0.4 source build here is my current workers2.properties file

JK AJP Connectors

2004-05-04 Thread Carl Olivier
Greetings all. I would appreciate some advise on an issue I am experiencing. The problem is as follows: Firstly, lets set the stage: Server: Windows 2000 Server 1GB RAM Tomcat 5.0.19 Apache 2.0.46 mod_jk2 My configurations are: 40 VirtualHosts in Apache with the matching 40 Tomcat Hosts

jakarta-tomcat-connectors 2.0.4 binary file for windows is not available on the apache site

2004-04-19 Thread Doris . Morris
The Windows Binary JK2 zip file contains the binary Unix file, mod_jk2.so, and not mod_jk2.dll. (http://apache.mirror.positive-internet.com/jakarta/tomcat-conn ectors/jk2/binaries/win32/jakarta-tomcat-connectors-jk2.0.4-win32-apache2.0.49.zip). Where can I get the correct binary files

RE: jakarta-tomcat-connectors 2.0.4 binary file for windows is not available on the apache site

2004-04-19 Thread Tian, Tim
mod_jk2 module: http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v2.0.2/bin/win32/mod_jk2-2.0.43.dll Regards, Tim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 4:39 AM To: [EMAIL PROTECTED] Subject: jakarta

Re: how to use multiple jk2 connectors?

2004-03-18 Thread Robert Hall
group=app2 [uri:/app2-test/*.jsp] debug=0 group=app2 [uri:/app2-test/login/*] debug=0 group=app2 HTH, Robert Joseph Shraibman wrote: I have multiple ip based virtual hosts, so in tomcat I configured three seperate engines with connectors on different ports, and in the apache VirtualHost I JkMount

Re: how to use multiple jk2 connectors?

2004-03-18 Thread Joseph Shraibman
Robert Hall wrote: Joseph, We're using Apache 1.3.27 on solaris with mod_jk2 to connect to two JBoss/Tomcat instances listening on separate ports. I experienced the same thing you described, all requests going to one of the jk2 ports. However, if I shutdown the JBoss/Tomcat instance that was

Re: how to use multiple jk2 connectors?

2004-03-18 Thread Robert Hall
Hi, Actually, I'm leaning towards a bug in mod_jk2 since a change in workers2.properties resulted in everything (so far) working. The only extra detail I had to add was explicit reference to index.jsp for both app's. Did you have a chance to try the config change I suggested? Robert Joseph

Re: how to use multiple jk2 connectors?

2004-03-18 Thread Joseph Shraibman
Robert Hall wrote: Hi, Actually, I'm leaning towards a bug in mod_jk2 since a change in workers2.properties resulted in everything (so far) working. The only extra detail I had to add was explicit reference to index.jsp for both app's. Did you have a chance to try the config change I suggested?

Re: how to use multiple jk2 connectors?

2004-03-18 Thread Robert Hall
Hi, No offense intended, but I have to ask: o Does your jk2.log give any hints as to what is going on? o Did you try stopping the TC instance that is listening on 8009 to see if one or more of the others would respond? o Is it possible to make the URIs in JkUriSet/ more explicit - like

Re: how to use multiple jk2 connectors?

2004-03-18 Thread Joseph Shraibman
Robert Hall wrote: Hi, No offense intended, but I have to ask: o Does your jk2.log give any hints as to what is going on? Nope. o Did you try stopping the TC instance that is listening on 8009 to see if one or more of the others would respond? No, when I have time I'll try that on my test

how to use multiple jk2 connectors?

2004-03-17 Thread Joseph Shraibman
I have multiple ip based virtual hosts, so in tomcat I configured three seperate engines with connectors on different ports, and in the apache VirtualHost I JkMount the worker that I configured in worker.properties to connect on a specific port. This works fine for mod_jk, but when I try

Re: how to use multiple jk2 connectors?

2004-03-17 Thread Adrian Lanning
- Original Message - From: Joseph Shraibman [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, March 18, 2004 1:49 AM Subject: how to use multiple jk2 connectors? I have multiple ip based virtual hosts, so in tomcat I configured three seperate engines with connectors

Two database connectors for tomcat + cocoon

2004-03-16 Thread Pablo E. Siciliano
Hi!! I'm using tomcat 4.1 under windows 98, with cocoon 2.0.1 , and jvm 1.4.2. I tried to add connection pool for MS SQL 2000 server. I'm using the connection driver provided by Microsoft in http://www.microsoft.com/downloads/details.aspx?FamilyID=9f1874b6-f8e1-4bd6-

Re: Two database connectors for tomcat + cocoon

2004-03-16 Thread Pablo E. Siciliano
I solved it adding SET JAVA_OPTS= -server -Xms512m -Xmx512m in my autoexec.bat file. - Original Message - From: Pablo E. Siciliano [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 2:40 PM Subject: Two database connectors for tomcat + cocoon Hi

build problem with jakarta-tomcat-connectors

2004-02-26 Thread bfforsyth
Hi all, I am trying to build an initial install of tomcat and am getting the following error during 'ant dist'. It would seem that I need a build.properties in the jakarta-comcat-connectors/util directory, but I don't know the first place to start to either build one from scratch

ServerSocketFactories for Connectors

2004-02-23 Thread Anton Ushakov
Hi, For a webservices project we need to override the ServerSocketFactory used with a http connector, - we are implementing our own httpg using overriden Input/Output streams that do GSS-API authentication. It works fine when I do this in server.xml on tomcat-4.1.29 Connector

Re: ServerSocketFactories for Connectors

2004-02-23 Thread Bill Barker
Anton Ushakov [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, For a webservices project we need to override the ServerSocketFactory used with a http connector, - we are implementing our own httpg using overriden Input/Output streams that do GSS-API authentication. It works

Build problem with: connectors source

2004-01-26 Thread Mats Eliesson
I downloaded the latest source file:jakarta-tomcat-connectors-jk2-src-current.tar.gz tar xvfz jakarta-tomcat-connectors-jk2-src-current.tar.gz cd jakarta-tomcat-connectors-jk2-2.0.2-src/jk Then I build with ant and recive the following error: [EMAIL

Re: Build problem with: connectors source

2004-01-26 Thread Eric Emminger
Mats I downloaded the latest source file:jakarta-tomcat-connectors-jk2-src-current.tar.gz tar xvfz jakarta-tomcat-connectors-jk2-src-current.tar.gz cd jakarta-tomcat-connectors-jk2-2.0.2-src/jk Then I build with ant and recive the following error: [EMAIL

Re: Build problem with: connectors source

2004-01-26 Thread Mark Eggers
Building mod_jk and mod_jk2 is a bit tricky, but not too bad. Here's how I accomplished it on Linux (Redhat 9 and Fedora Core 1). mod_jk2 1. Download the latest source. 2. Uncompress and and untar it 3. cd to mod_jk2 native area cd jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2 4. Set

Re: bad signature for jakarta-tomcat-connectors-jk2-2.0.2-src.tar.gz

2004-01-25 Thread David Rees
Eric Emminger wrote, On 1/24/2004 12:25 PM: I'm trying to verify the signature of jakarta-tomcat-connectors-jk2-2.0.2-src.tar.gz, but gpg says public key not found. I DID import the KEYS from http://www.apache.org/dist/jakarta/tomcat-connectors/KEYS. Here's the output of the gpg verify command

bad signature for jakarta-tomcat-connectors-jk2-2.0.2-src.tar.gz

2004-01-24 Thread Eric Emminger
I'm trying to verify the signature of jakarta-tomcat-connectors-jk2-2.0.2-src.tar.gz, but gpg says public key not found. I DID import the KEYS from http://www.apache.org/dist/jakarta/tomcat-connectors/KEYS. Here's the output of the gpg verify command. $ gpg --verify jakarta-tomcat-connectors

Pushlets and HTTP connectors

2004-01-19 Thread Matt Preston
to a single HTTP server. I managed to circumvent the problem by creating 2 HTTP 1.1 connectors (on 2 different ports), using 1 for the persistent connection and the other for everything else. Everything worked fine in this situation. It looks like IE has some issues with trying to load multiple

Re: Building jakarta-tomcat-connectors-jk2-2.0.2-src [HOW?]

2004-01-12 Thread Timothy Stone
process for version 2.0.2 of the Jakarta-Tomcat-Connectors. ...snip... This worked like a charm for me... http://marc.theaimsgroup.com/?l=tomcat-userm=105103815630094w=2 Also see Ian Harwood's work: http://marc.theaimsgroup.com/?l=tomcat-userm=107321319222031w=2 I also got it to build on Mac OS X

Building jakarta-tomcat-connectors-jk2-2.0.2-src [HOW?]

2004-01-09 Thread Carlos Cajina - Hotmail
of the Jakarta-Tomcat-Connectors. Please consider the necessary enviroment variables set up as follows: JTC_HOME = /usr/src/jakarta-tomcat-connectors-jk2-2.0.2-src/ JAVA_HOME = /usr/local/java/j2sdk1.4.2_03 TOMCAT_HOME = /usr/local/tomcat/jakarta-tomcat-4.1.29 APACHE2_HOME = /usr/local/apache2 ANT_HOME

Re: Building jakarta-tomcat-connectors-jk2-2.0.2-src [HOW?]

2004-01-09 Thread Mark Eggers
Carlos, See my recent mail message concerning mod_jk2 doesn't make jk2.socket. It has an abreviated configure, compile, and install for mod_jk2 contained in it. Basically, don't use ant to compile just the native portion of the connector. Go to the subdirectory native/jk2, run configure, and

RE: Building jakarta-tomcat-connectors-jk2-2.0.2-src [HOW?]

2004-01-09 Thread Shapira, Yoav
Howdy, I don't deal with the connectors, much less building them, but just from a generic unix point of view isn't Makefile.in a feeder into a configure script to be run before make? You need to run configure, which will diagnose your system and create a normal Makefile from the Makefile.in

Re: Building jakarta-tomcat-connectors-jk2-2.0.2-src [HOW?]

2004-01-09 Thread Carlos Cajina - Hotmail
Hello again. Thanks A LOT for que quick answers. Mr. Shapira was absolutely right with his UNIX point of view, and along with his reasoning the instructions from Mr. Eggers helped me (finally) build the jk2 module for Apache. Basically, the rest of the building process after running Ant is as

tomcat-connectors

2004-01-05 Thread Shannon Scott
Greetings, I hope everyone is feeling well in the new year. I recently upgraded a web server from redhat7.2 to the fedora os. The apache was upgraded in the process and now we are running Apache/2.0.47. I have been unable to get a mod_jk or mod_jk2 that will install or compile. I have tried the

Re: tomcat-connectors

2004-01-05 Thread Camron G . Levanger
Hi, I emailed you a compiled mod_jk that should work on fedora, if for some reason you do not get the attachment let me know and i will send you a link. Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705 On Jan 5, 2004, at 8:49 AM, Shannon Scott wrote: Greetings, I hope

RE: tomcat-connectors

2004-01-05 Thread Shannon Scott
, January 05, 2004 10:57 AM To: Tomcat Users List Subject: Re: tomcat-connectors Hi, I emailed you a compiled mod_jk that should work on fedora, if for some reason you do not get the attachment let me know and i will send you a link. Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890

Re: tomcat-connectors

2004-01-05 Thread Camron G . Levanger
Sorry to hear that, I am running 2.0.47. I can't understand why it wouldn't work. But anyway, I compiled mine from the jakarta-tomcat-connectors-4.1.27-src. I will do a little research see if i can't dig up something. Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705

Re: tomcat-connectors

2004-01-05 Thread James Myers
Hi, I am having similar problems, though not with the same configuration as yours. My config is: RH9, Apache 2.0.48, Tomcat 5.0.16, JK2_2.0.2. I cannot get the make files to produce the .so's. It's as if libtool is not working. I am following the instructions to the letter, but still no

  1   2   3   4   5   >