[ADDON] tomcat.nsi for Nullsoft 2.0

2002-11-07 Thread Mladen Turk
Hi, The new version (still beta) has nice UI interface, and cause of bz2 is almost 1M less in size. How it looks can be seen at: http://apache.mappingsoft.com/download/jakarta-tomcat-4.1.14-LE-jdk14.ex e MT. ntomcat.nsi Description: Binary data -- To unsubscribe, e-mail:

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_socket.c

2002-11-07 Thread Mladen Turk
Personally don't like hardcoded defines. Could that be guessed or forced in makefiles? +/* affects include files on Solaris (for FIONBIO on Solaris 8) */ +#define BSD_COMP MT. -- To unsubscribe, e-mail: mailto:tomcat-dev-unsubscribe;jakarta.apache.org For additional commands,

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_socket.c

2002-11-07 Thread Mladen Turk
-Original Message- From: jean-frederic clere It must be guessed in the configure... Why? Think we just add the -DBSD_COMP to the JK_CFLAGS in Makefile.in MT. -- To unsubscribe, e-mail: mailto:tomcat-dev-unsubscribe;jakarta.apache.org For additional commands, e-mail:

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_socket.c

2002-11-07 Thread Mladen Turk
-Original Message- From: Henri Gomez Why? Think we just add the -DBSD_COMP to the JK_CFLAGS in Makefile.in Sure but it's not very clean and didn't take use of configure detection features. BTW: we'll need to find a way to add it to jkant for those who want to use ant

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_socket.c

2002-11-07 Thread Mladen Turk
-Original Message- From: Henri Gomez Agreed, but the entire purpose of the ioctl is to disable the nonblocking socket. We can use the fcntl for that. So let use it that way, APR is a reference in native code implementation ;) I was looking at the docs and see no reason at

RE: R: GOODBYE from tomcat-dev@jakarta.apache.org

2002-11-01 Thread Mladen Turk
-Original Message- From: Pier Fumagalli [mailto:pier;betaversion.org] Sent: Friday, November 01, 2002 12:33 PM To: Tomcat Developers List Subject: FW: R: GOODBYE from [EMAIL PROTECTED] Who unsubbed this guy on Fri Nov 1 03:31:13 PST 2002??? Think the name is bug...

RE: JkRequestLogFormat for JK 1.2.x on Apache 2.0 ?

2002-10-29 Thread Mladen Turk
-Original Message- From: Henri Gomez [mailto:hgomez;apache.org] Sent: Tuesday, October 29, 2002 10:30 AM To: Tomcat Developers List Subject: Re: JkRequestLogFormat for JK 1.2.x on Apache 2.0 ? Mladen Turk wrote: -Original Message- From: news [mailto:news

RE: JkRequestLogFormat for JK 1.2.x on Apache 2.0 ?

2002-10-28 Thread Mladen Turk
-Original Message- From: news [mailto:news;main.gmane.org] On Behalf Of Costin Manolache Sent: Monday, October 28, 2002 6:40 PM To: [EMAIL PROTECTED] Subject: Re: JkRequestLogFormat for JK 1.2.x on Apache 2.0 ? Henri Gomez wrote: I added 'JkRequestLogFormat' for Apache

RE: [jakarta-tomcat-connectors] Bug patch

2002-10-25 Thread Mladen Turk
Commited, thx. -Original Message- From: [EMAIL PROTECTED] - char *val=s-attributes-nameAt( env, s-attributes, i); + char *val=s-attributes-valueAt( env, s-attributes, i); Seems like good old copy/paste ;) MT. -- To unsubscribe, e-mail:

RE: [JK2] RedHat 8.0 JNI totaly bogus

2002-10-24 Thread Mladen Turk
-Original Message- From: Henri Gomez I didn't tried RH 8.0 yet, but the experience I've got from RH 7.2 with JNI make me some serious headaches. Before launching Apache 2.0 you need : 1) set the LD_LIBRARY_PATH export

RE: [JK2] RedHat 8.0 JNI totaly bogus

2002-10-24 Thread Mladen Turk
-Original Message- From: Henri Gomez Did it works now ? Yes. For 1.4.1/RH8: export LD_LIBRARY_PATH=$JAVA_HOME/jre/lib/i386:$JAVA_HOME/jre/lib/i386/client :$ LD_LIBRARY_PATH 2) make JDK use the non floating stacks export LD_ASSUME_KERNEL=2.2.5

[JK2] Use lock file forJNI startup status WAS: [JK2] RedHat 8.0 JNI totaly bogus

2002-10-24 Thread Mladen Turk
I've made the abort and exit hook for JVM adding two aditional option parameters at the end of config ones. If the JVM isn't set properly (wrong LD_LIBRARY_PATH, PATH pointing to the java outside the jre, etc...) the CreateJavaVM calls the abort hook. I was assuming that this hook will act

RE: [jakarta-tomcat-connectors] Bug patch

2002-10-24 Thread Mladen Turk
-Original Message- From: [EMAIL PROTECTED] jk\native2\common\jk_msg_ajp.c ( function: jk2_msg_ajp_appendMap ) line: 224 ... for( i=0; i size; i++ ) { char *name=map-nameAt( env, map, i ); -char *val=map-nameAt( env, map, i ); +char *val=map-valueAt(

[JK2] RedHat 8.0 JNI totaly bogus

2002-10-23 Thread Mladen Turk
Hi, Using JNI on RH8 using either original 2.0.40, Henri's 2.0.43-1.7.2 or build from sources (either prefork or worker). Even tried 2.0.1 rpm, but on all config when trying to use the [vm:] I'm having constant child_init, with cpu at 99%. ErrorLog is growing and seems that entire thing faults at

RE: [JK2] RedHat 8.0 JNI totaly bogus

2002-10-23 Thread Mladen Turk
From: Costin Manolache Using JNI on RH8 using either original 2.0.40, Henri's 2.0.43-1.7.2 or build from sources (either prefork or worker). Even tried 2.0.1 rpm, but on all config when trying to use the [vm:] I'm having constant child_init, with cpu at 99%. ErrorLog is growing

RE: [PROPOSAL] JK2 uriMap using native regex

2002-10-21 Thread Mladen Turk
-Original Message- From: Henri Gomez I would rather pick one and use it, and deal with the build problems. Probably we should just use what apache uses, it seems like a reusable piece of code. Other opinions ? We should use a regexp implementation which use a

RE: IIS JK Connector.

2002-10-21 Thread Mladen Turk
-Original Message- From: Henri Gomez The place is on apache.org, coding standards. http://www.apache.org/dev/styleguide.html So why don't we follow that ;). MT. -- To unsubscribe, e-mail: mailto:tomcat-dev-unsubscribe;jakarta.apache.org For additional commands, e-mail:

RE: Possible mod_jk patch with ap_get_server_name

2002-10-18 Thread Mladen Turk
-Original Message- From: Henri Gomez +s-server_name = ap_get_server_name(r); s-server_port = htons( r-connection-local_addr.sin_port ); s-server_software = (char *)ap_get_server_version(); It's seems correct. JF, Mladen what do you think ? Beter

RE: uri mapping problems

2002-10-18 Thread Mladen Turk
-Original Message- From: Mladen Turk If there are not such limitations then we'll need some sort of reverse prefix mapping. Or just put the pcre in the apr-util, and you'll be able to match the things limited only by your imagination :-) MT. -- To unsubscribe, e-mail

[JK2] disable shm for threaded servers?

2002-10-18 Thread Mladen Turk
Hi, Can we disable shm (better ignore) for the servers that doesn't benefit at all from it? Meaning WIN32, perhaps others (depending on build?) Reason? Bunch of log error messages and checking that only waste CPU time. MT. -- To unsubscribe, e-mail:

RE: [JK2] disable shm for threaded servers?

2002-10-18 Thread Mladen Turk
-Original Message- +1 ( you can add disable=1 on the [shm] - it should work fine ). But in this case I think a memory area should be used for that purpose. The use of shm is for dynamic config changes and monitoring. It's not yet fully implemented, but jk_status uses it.

[PROPOSAL] JK2 uriMap using native regex

2002-10-18 Thread Mladen Turk
Hi, I've posted a uriMap code that matches uri's using regular expressions couple of weeks ago. There was a consensus that we need to wait until 2.1 and eventually that we use the regex from APR (if it ever will be there). Ok, so I'm proposing that we make our own regex code (?). Why? 1.

[VOTE] New Committer John Turner

2002-10-18 Thread Mladen Turk
Hi, I'd like to propose John Turner [Jturner at AAS.com] as a new Tomcat committer. He does a great job in helping people on tomcat-users list, and he is willing to help us writing docs, testing, etc. MT. -- To unsubscribe, e-mail: mailto:tomcat-dev-unsubscribe;jakarta.apache.org For

[VOTE] New Committer John Turner

2002-10-18 Thread Mladen Turk
Hi, I'd like to propose John Turner [Jturner at AAS.com] as a new Tomcat committer. He does a great job in helping people on tomcat-users list, and he is willing to help us writing docs, testing, etc. MT. -- To unsubscribe, e-mail: mailto:tomcat-dev-unsubscribe;jakarta.apache.org For

RE: uri mapping problems

2002-10-17 Thread Mladen Turk
-Original Message- From: jean-frederic clere I am fighting with the mapping of mod_jk2. (Apache-2.0). I have noted that things like [uri:/*_servlet_vehicle/*] is not working. Cannot work like that having starURIstar only URI/star cause we only have prefix match. I'm not sure

[JK2] uriMap and hostMap docs

2002-10-13 Thread Mladen Turk
Hi, Perhaps the subject doesn't quite matches the real context but take a look at: http://jakarta.apache.org/~mturk/urimap.html This is how the uriMap and hostMap should work now. If I catch some time I'll draw the flowchart for the uriInit phase too. MT. -- To unsubscribe, e-mail:

[JK2] uriMap and virtual hosts

2002-10-11 Thread Mladen Turk
Hi, I have a question whether it would be OK to implement uriMap vhost in a following way: When we define a host using scheme [uri:somehost] then only the mappings defined for that host are used for uriMap matching. I would like to add the option like 'inherit' that will when set and the uriMap

RE: [JK2] uriMap and virtual hosts

2002-10-11 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] host's mappings. That way we may use the single [uri:/*.jsp] that will propagate trough each virtual host that has the 'inherit' flag set. Does it make sense to do something like that? I'm a little

RE: [JK2] uriMap and virtual hosts

2002-10-11 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] I'm calling them 'default' (Nacho calls them global) simply because this name is more what they really are (mappings bound to the default host). I think we are calling it diffreent because they

RE: List Archive: Follow-up - jk2 jni doesn't work

2002-10-10 Thread Mladen Turk
-Original Message- From: Brzezinski, Paul J [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 6:25 PM To: [EMAIL PROTECTED] Subject: List Archive: Follow-up - jk2 jni doesn't work Jean-Frederic, Bill, Mladen Turk, List, I found this in the archive

[JK2] make hostMap cache

2002-10-09 Thread Mladen Turk
Hi, I would like to make the hostMap cache for hostname:port combination. Right now we doing hostMap over and over again for each request, so I would like to make a table that will save the once found hostEnv for requested hostname:port combination, skipping hostMap when already resolved. Any

[ANNOUNCEMENT] JK2 Released as 2.0.1

2002-10-07 Thread Mladen Turk
Hi all, The Jakarta-Tomcat-Connector team is pleased to announce the availability of JK2 2.0.1. Binaries and source versions of the release are available and can be downloaded from : http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v 2.0.1/ MT. -- To unsubscribe,

Tagging JK2_2_0_1

2002-10-06 Thread Mladen Turk
The jakarta-tomcat-connectors will be tagged as JK2_2_0_1 today on 18:00 GMT. There is a CHANGES.txt file in the CVS that explains some of the major bugfixes since 2.0.0. The sources will be available at: http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v 2.0.1/src MT.

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_wo rker_ajp13.c

2002-10-05 Thread Mladen Turk
-Original Message- From: news [mailto:[EMAIL PROTECTED]] On Behalf Of Costin Manolache Sent: Friday, October 04, 2002 11:13 PM To: [EMAIL PROTECTED] Subject: RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_wo rker_ajp13.c Mladen - time for a jk2.0.2 :-) ?

[PROPOSAL] Splitting docs for JK2

2002-10-03 Thread Mladen Turk
Hi, I propose that we split the: 1. configtc.xml to the 2 documents: a. configtc.xml b. configtcex.xml (having the examples section) 2. configweb.xml to the 3 (or perhaps more) documents: a. configweb.xml (having intro and config section) b. configwebcom.xml

RE: [VOTE] JK2 2.1

2002-10-02 Thread Mladen Turk
-Original Message- From: Henri Gomez [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 8:36 AM To: Tomcat Developers List Subject: Re: [VOTE] JK2 2.1 #ifdef AS400 fp = fopen(workerFile, w, o_ccsid=0); #else fp = fopen(workerFile, w); #endif

RE: [VOTE] JK2 2.1

2002-10-02 Thread Mladen Turk
-Original Message- From: Henri Gomez [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 8:48 AM To: Tomcat Developers List Subject: Re: [VOTE] JK2 2.1 More comments on APR and JK2. Ok, I stopped here since I feel there is many works to conduct in JK2 to make

[JK2] uriMap processing, need some opinions

2002-10-02 Thread Mladen Turk
Hi, Having some trouble clarifying uriMap processing. Situation 1: [uri:/examples/*] The context is / Situation 2: [uri:/examples/*] context=/ex The context is /ex Situation 3: [uri:/examples/*] context=/examples The context is /examples Now since all situations need the /examples/

[JK2] Unicode Log messages using 4.1.12

2002-10-02 Thread Mladen Turk
Hi, Since 4.1.12 I have the following messages in the jk2.properties.save \ua\up\ur\u.\uj\un\ui\uM\uo\ud\u e\uS\uo\u=\ui\un\up\ur\uo\uc\u00 00e\us\us\u

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_lb.c

2002-10-02 Thread Mladen Turk
-Original Message- From: [EMAIL PROTECTED] Modified:jk/native2/common jk_worker_lb.c Log: Introduced 3 new configuration parameters to the lb. 1. attempts -- replaces harcoded MAX_ATTEMPTS 2. recovery -- replaces hardcoded WAIT_BEFORE_RECOVER 3. timeout -- this

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_lb.c

2002-10-02 Thread Mladen Turk
It is disabled by default and never checked (if you don't set the timeout=x inside the [lb]). I there any way to disable completely that timeout? Perhaps setting it to -1 or something like that? This timeout disabled should be the default config.. -- To unsubscribe, e-mail:

Tagging JK2_2_0_1?

2002-10-02 Thread Mladen Turk
There has been some major fixes inside the uriMap, uriEnv, apr_socket and lb that makes the 2_0_0 IMO unusable, and personally I'm ashamed as a RM that this was a release after all :(. Since we tagged and released JK2 as beta, seems to me that we could easily do the same for the 2.0.1, and just

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_lb.c

2002-10-02 Thread Mladen Turk
-Original Message- On Behalf Of Costin Manolache Are we documenting all those settings - and the details on why/how :-) ? Sure, like everyone else ;). MT. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_lb.c

2002-10-02 Thread Mladen Turk
-Original Message- Sure, like everyone else ;). Yes, I know :-) I'll try to get over the horrible and nonstandard DTD that we use and start documenting what I can still remember, and anything new that I add. And I won't write any new jk code until I finish at least

[VOTE] JK2 2.1

2002-10-01 Thread Mladen Turk
Hi, Since there has been general concensus that we should use the APR for every supported API call. Here is my design proposal. General: [x] Drop HAS_APR flags and dissalow building of JK2 without APR [ ] Keep everything like it is (the rest doesn't interests me) Regular expressions: [ ] Add

RE: JK2 Tagged as JK2_2_0_0_rel

2002-10-01 Thread Mladen Turk
Configure ? Know what it is, but has no tools to create one... README ? We need to create one or not and put in in the cvs. -Original Message- From: jean-frederic clere The name of the directory is jakarta-tomcat-connectors-jk2-2.0.0 that is wrong. What would be the correct one?

RE: [VOTE] JK2 2.1

2002-10-01 Thread Mladen Turk
-Original Message- From: Henri Gomez Even if I agree with using APR in JK 2.1, I think we should first focus on having a stable JK 2.0 before starting thinking about JK 2.1. That's good one :). I agree with that, but would like to make the load balancer to have a timeout

RE: [VOTE] JK2 2.1

2002-10-01 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega And i agree with Henri also ( and i dont understand your writing it twice argument ) that to open a Branch right now, is another development nightmare.. Well, didn't think that it would require a new branch. Ok, can we at least agree

RE: [VOTE] JK2 2.1

2002-10-01 Thread Mladen Turk
-Original Message- From: Henri Gomez We speaked about use of APR in JK2 many times in the past, take a look at tomcat-dev mailing list archive. Know that, but often people change opinions, you cannot blame to occasionally put that back on ;) Making APR mandatory for JK2

RE: [VOTE] JK2 2.1

2002-10-01 Thread Mladen Turk
Well, what I was yelling about was the core components, like load balancer, uriMap, uriEnv. We can write our own functionality, copy the code from the APR, or something else if faster. These are the components that cannot easily be supported using #idfef HAS_APR #elif MOZILLA #else... So, we

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_socket.c

2002-09-30 Thread Mladen Turk
No, they don' t. The socket code is now reverted to the 4.1.12 tag. It needs lot of work to make the entire logic work as It should (well, that's my opinion), not just bug-fixing. The concept is wrong, not the code. Either we'll retag that as 2_0_0 or 2_0_1. What do you think? I would like to

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_socket.c

2002-09-30 Thread Mladen Turk
-Original Message- From: Henri Gomez Either we'll retag that as 2_0_0 or 2_0_1. What do you think? 2_0_0_rel, as I did for JK 1.2.0 OK, its going to be 2_0_0_rel, and the sources will go to the Jakarta (I've got the account) as 2.0.0. MT. -- To unsubscribe, e-mail:

JK2 Tagged as JK2_2_0_0_rel

2002-09-30 Thread Mladen Turk
JK2 has been retagged cause of socket bug (for some of us it was a feature :-). The sources are on: http://jakarta.apache.org/~mturk/ Cannot write to the builds dir, so if someone is willing to copy that to the builds/release. Nacho, Henri? MT. -- To unsubscribe, e-mail: mailto:[EMAIL

RE: JK2 Tagged as JK2_2_0_0_rel

2002-09-30 Thread Mladen Turk
: Mladen Turk wrote: JK2 has been retagged cause of socket bug (for some of us it was a feature :-). The sources are on: http://jakarta.apache.org/~mturk/ Cannot write to the builds dir, so if someone is willing to copy that to the builds/release. Nacho, Henri? I

RE: JK2 Tagged as JK2_2_0_0_rel

2002-09-30 Thread Mladen Turk
Mladen Turk wrote: Ok did, could you check on the same place (my home dir). Where cvs or jakarta ? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_socket.c

2002-09-28 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] The comment is wrong, the problem is with the loadbalancer logic, if one of the configured instances got lost, connect returns WSAECONNREFUSED, with Malden's patch, the thread gots stuck in a loop trying

Tagging JK2_2_0_0

2002-09-27 Thread Mladen Turk
The JK will get tagged as JK2_2_0_0 today on 18:00 GMT. The sources will be on the http://cvs.apache.org/~mturk/jk2/v2.0.0/src Regards, MT. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

JK2 2.0.0 Released as Beta

2002-09-27 Thread Mladen Turk
This is the first Beta relese of JK2 The JK2 should be considered initial-release quality code. It has not been subjected to the same stresses on its stability and security that the mod_jk releases have enjoyed, so there is a greater possibility of undiscovered vulnerabilities to stability

Tagging JK2_2_0_0_BETA

2002-09-26 Thread Mladen Turk
The JTC will be tagged as JK2_2_0_0_BETA at 18:00 GMT. Until then we need as much work on the docs, anyone can spare ;), or perhaps it doesn't mater for the tag? Regards, MT. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Tagging JK2_2_0_0_BETA

2002-09-26 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega In addition 12346 continues being a problem It works for me. some issues with SSL under IIS (12998) , i bet that issues are the same with apache .. but i dont know.. Will check. MT. -- To unsubscribe, e-mail: mailto:[EMAIL

RE: Tagging JK2_2_0_0_BETA

2002-09-26 Thread Mladen Turk
-Original Message- From: Henri Gomez jk2 still didn't works on Apache 1.3 (something broken on) : Should work now (tested on WIN32), could you test that on a NIX? MT. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: jk2 uri normal behaviour

2002-09-26 Thread Mladen Turk
Look into the /examples/Web-inf/web.xml ;) From: Henri Gomez I could get : -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: jk2 uri normal behaviour

2002-09-26 Thread Mladen Turk
-Original Message- From: Henri Gomez [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 1:09 PM To: Tomcat Developers List Subject: Re: jk2 uri normal behaviour Mladen Turk wrote: Look into the /examples/Web-inf/web.xml ;) What do you means ? Dissregard

RE: jk2 uri normal behaviour

2002-09-26 Thread Mladen Turk
From: Henri Gomez Yes, since when you've got [uri:/examples/*], it should override any others definition, using the same worker. But if some uris in this context, goes to differents workers, you shouldn't override. Yes it's a bug... Seems that the trailing slash is not compared.

JK2 logo

2002-09-25 Thread Mladen Turk
Just a suggestion. MT. jk2.png Description: PNG image -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [POLL] aprize jk2

2002-09-25 Thread Mladen Turk
-Original Message- From: jean-frederic clere I have always supported the use of APR. We should use it every where! I have just a question what happends with jni (we have to use the same threads for JVM and Apache)? Nothing cannot use the JNI without APR even right now.

RE: [POLL] aprize jk2

2002-09-25 Thread Mladen Turk
From: Henri Gomez Nothing cannot use the JNI without APR even right now. We are attaching threads (that's the only way how it can be done). It's really a pain for example when using JNI from EBCDIC systems like AS400 and BS2000 which need to have translation of strings. The apr

RE: [JK2] new uriMap using hostname:port

2002-09-24 Thread Mladen Turk
-Original Message- From: Dmitry Letin [mailto:[EMAIL PROTECTED]] :-) [uri:*] alias=localhost debug=10 [uri:www.i-com.com:80] debug=10 If the 80 is default server port then you have to ommit it Simply use the [uri:www.i-com.com] The port directive is used for non

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_uriEnv.c

2002-09-24 Thread Mladen Turk
OK will make the uri parser on my own. Not such a big deal. -Original Message- From: news [mailto:[EMAIL PROTECTED]] On Behalf Of Costin Manolache As I mentioned, I prefer doing this _after_ jk2.0 ( i.e. the first milestone), possibly in a branch. MT -- To unsubscribe,

JK2 2.0.0 Release proposal

2002-09-24 Thread Mladen Turk
Hi, Since there is no major showstoppers and a) The vhosts should work now b) Socket BUG 12346 is solved Here is the release plan: 1. 09/25/2002 - Freeze the further development. 2. 09/26/2002 - If there is no major bugs tag the release as JK2_2_0_0 3. 09/26/2002 - Prepare the source

RE: JK2 2.0.0 Release proposal

2002-09-24 Thread Mladen Turk
Contin wrote: Let's call this a 'milestone' or 'build', as is done in 4.x and apache. So JK2_0_BETA as tag name and jk2.0-beta as build name, but I would reather prefer only numbers an just said OK jk-2.0.0 is Beta version. MT. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: [JK2] new uriMap using hostname:port

2002-09-24 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] ServerName www.hippo.com:8081 This is the problem (I forgot that the server name can have a port) and a wk2.p file with only [uri:www.hippo.com:8081/examples/*] will not work, to solve it we need

RE: [JK2] new uriMap using hostname:port

2002-09-24 Thread Mladen Turk
From Dmitry Letin And I do not see messages like this in error log: [Sat Sep 21 18:09:40 2002] (debug ) [jk_uriMap.c (371)] uriMap.init() loaded host www.i-com.com Try setting LogLevel to debug in the httpd.conf Post the ServerName, Listen and VirtualHost from your httpd.conf And

RE: [JK2] new uriMap using hostname:port

2002-09-24 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] This is exactly what correctHost did :)), to obviate the need to declare hosts in wk2.p file :)), so this is the problem we are having, mistery resolved.. ;) But now i know i'm totally -1 about to delete

RE: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_pool.c

2002-09-24 Thread Mladen Turk
Henri, I was just thinking, wouldn't be better to make that not only for AS400. If there are some other machines that has 16 byte pointers (IA64 perhaps), Then we cold make that as: #ifdef HUGE_POINTERS (or something like that) instead of AS400. It doesn't mater for now, but think of it as

[JK2] uriMap vhosts

2002-09-23 Thread Mladen Turk
Hi, Seems we have some problems and conceptual misunderstandings regarding vhosts. I would like to clear that a bit cause it's a pretty big showstopper on any beta. My proposal is to lead some light to both configuration and code that maps all that. We need to things that will satisfy that.

RE: [JK2] uriMap vhosts

2002-09-23 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] There is no difference, if one needs to map a Java context to one the alias of the default server, the only way to do it, is to think about the default server, exactly as any other VS, it has a name (

RE: [POLL] aprize jk2

2002-09-23 Thread Mladen Turk
Hi, glad to see you rised from the death :) -Original Message- From: news [mailto:[EMAIL PROTECTED]] On Behalf Of Costin Manolache Sent: Monday, September 23, 2002 12:35 PM To: [EMAIL PROTECTED] Subject: Re: [POLL] aprize jk2 +1 on using apr/apr-util - but I would preffer doing

RE: [POLL] aprize jk2

2002-09-23 Thread Mladen Turk
For (1) - it works for me :-) ( using Location ), and I did at least once tested it with the 'normal' mapper, so it can't be very far. If you give me more context info on what's broken - I can try help with the fix. It's pretty close to finish, hopefully later this day. I'll look at

[JK2] new uriMap using hostname:port

2002-09-23 Thread Mladen Turk
Think I didn't miss something :) Here is how it works: All the mappings are done in the following way: hostname|*[:port] Meaning '*' is used for the default host. You can make now something like: [uri:*:8080] Info=will map the all the default servers on the port 8080 Aliases should work

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/server/apache2 mod_jk2.c

2002-09-22 Thread Mladen Turk
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 22, 2002 4:51 AM /* As per Servlet spec, do exact match first */ match=jk2_uriMap_exactMap( env, uriMap, ctxEnv-exactMatch, uri, uriLen, reverse ); -if( match !=

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/server/apache2 mod_jk2.c

2002-09-22 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] I agree that my patch is buggy in the case of a request coming from 80 or 443, but if we want to support port bases V hosting, we need to pass it down, if not [uri:www.something.com:8080/somecontext]

[POLL] aprize jk2

2002-09-20 Thread Mladen Turk
I would like to make a poll (something non-obligatory as a vote) about using apr/apr-util inside the jk2. The reason is quite simple, we have lots of extra code that we either duplicate or just mimic. Since the APR is already default for Apache2 and IIS, IMO there is no reason to keep and

RE: [BUG] jk2 jni doesn't work

2002-09-19 Thread Mladen Turk
-Original Message- From: jean-frederic clere OPT=-Djava.class.path=${TOMCAT_HOME}\bin\tomcat-jni.jar;${TOMCAT_HOME} \s erver\lib\commons-logging.jar I do not like this work-around: we will have end with a huge classpath. Neither do I, but this is the only way for now

RE: [ADDON] Jk2 uriMap using pcre (someone willing to check)

2002-09-18 Thread Mladen Turk
Works too (tested on IIS...) It's allready driving ArcIMS. That's great but will works only when jk2 with Apache 2 ? What about IIS/iPlanet ? Well, it has nothing to do with the underlaying server, it just replaces our parsings of *.jsp and stuff like... MT. -- To unsubscribe, e-mail:

RE: [ADDON] Jk2 uriMap using pcre (someone willing to check)

2002-09-18 Thread Mladen Turk
-Original Message- From: jean-frederic clere Is it the same pcre than the one of httpd-2.0/srclib/pcre? Yes, It's the same as on the cvs. If yes it would be nice to put it in apr-util and share it with httpd-2.0 ;-) I've posted the following mail to the httpd group on

RE: [ADDON] Jk2 uriMap using pcre (someone willing to check)

2002-09-18 Thread Mladen Turk
-Original Message- From: Henri Gomez [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 1:15 PM To: Tomcat Developers List Subject: Re: [ADDON] Jk2 uriMap using pcre (someone willing to check) That's jk2 (including IIS/NES) and not just Apache 1.3/2.0 since

RE: [ADDON] Jk2 uriMap using pcre (someone willing to check)

2002-09-18 Thread Mladen Turk
From: jean-frederic clere Henri Gomez wrote: That's jk2 (including IIS/NES) and not just Apache 1.3/2.0 since these files are in common and used for example in isapi implementation. Do you means that APR/APR-UTIL is a pre-requisite for ALL servers implementations ? Yes.

RE: [BUG] jk2 jni doesn't work

2002-09-18 Thread Mladen Turk
-Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED]] OK this is a release showstopper! IMHO the reason is missing org.apache.commons.logging.LogFactory, perhaps not loaded by the jni channel. If someone more familiar with that can dig into and trace the problem

RE: [ADDON] Jk2 uriMap using pcre (someone willing to check)

2002-09-18 Thread Mladen Turk
-Original Message- From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] [uri:/examples/(?!\w*\.(gif|jpg)$)] info=Map the whole webapp except *.gif and *.jpg files [uri:/\w+\.jsp$] info=Map the extension Yipeee! :) Really nice, i suppouse that every part of the

RE: [BUG] jk2 jni doesn't work

2002-09-18 Thread Mladen Turk
This is the classloader problem. Think that Bill Baker is solving this, but until then add the commons-logging.jar to the loaded classes when started inprocess: OPT=-Djava.class.path=${TOMCAT_HOME}\bin\tomcat-jni.jar;${TOMCAT_HOME}\s erver\lib\commons-logging.jar Adding commons-logging to the

RE: JK2: JNI doesn't work anymore?

2002-09-17 Thread Mladen Turk
From: jean-frederic clere Mladen Turk wrote: Did someone been able to run the jk2 as inprocess lately on 4.1.10? Well, I'm having serious troubles, and think that the problems are in the Java part of the connector. I've put some debuging code to the AprImpl.java and I'm

RE: JK2: JNI doesn't work anymore?

2002-09-17 Thread Mladen Turk
, or something similar? -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED]] From: jean-frederic clere Any clues? Not yet. I have problems with the classloader in an earlier state (and I am using the CVS head of 4.1). Well, the jni is working

[ADDON] Jk2 uriMap using pcre (someone willing to check)

2002-09-17 Thread Mladen Turk
. * * @author: Gal Shachor [EMAIL PROTECTED] * @author: Costin Manolache * @author: Mladen Turk */ #include jk_pool.h #include jk_env.h #include jk_uriMap.h #include jk_registry.h #include apr_lib.h #include apr_pools.h #include apr_strings.h #include pcreposix.h static jk_uriEnv_t

[PROPOSAL] working jk2 configuration files

2002-09-08 Thread Mladen Turk
Hi, I would like to make a jk2.properties and workers2.properties as working one by the installation. Hope that I express myself as understandable :). This means that the default jk2 and workers2 properties should have only the minimum configuration directives needed for connector to work. My

RE: jk doc works in progress

2002-09-05 Thread Mladen Turk
One suggestion. I would use the align=left for most of the tables showing config or console cause it would look much better, but that's my opinion. For those of you interested in seeing the jk documentation in progress just go to : http://jakarta.apache.org/~hgomez/jk_docs/ This

RE: Strange delays while Tomcat works

2002-08-20 Thread Mladen Turk
-Original Message- From: Dev Zero G Ltd [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 9:31 PM To: Tomcat Developers List Subject: Strange delays while Tomcat works If your processor load is low during those delays then it seems to me that you have a problems like a

[COMMENT] mod_jk2 reverse mappings

2002-08-15 Thread Mladen Turk
Hi, Some comments regarding reverse uri mappings. This is the simplest way of accomplishing the reverse mapping (I'm not sure if this is correct terminology). There is additional option for the uri map configuration 'reverse' : [uri:/examples/*.gif] info=Extension mapping reverse=1 All the

RE: [REPOST] [VOTE] [4.1.9] Stability rating

2002-08-14 Thread Mladen Turk
ballot [x] Alpha [ ] Beta /ballot MT. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [REPOST] [VOTE] [4.1.9] Stability rating

2002-08-14 Thread Mladen Turk
SORRY I MEANT BETA. ballot [ ] Alpha [X] Beta /ballot MT. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

<    3   4   5   6   7   8   9   >