JK2 and Apache1.3 win

2002-10-18 Thread Vjeran Marcinko
Hi. I'm having problem instaling jk2 connector on my Apache 1.3 win... I downloaded 'mod_jk2-1.3.27.dll' and used basic configuration, that meaning 'workers2.properties' as follows : [shm] file=${serverRoot}/logs/shm.file size=1048576 # Example socket channel, override port and host. [channel.soc

Native parts of connectors ?

2002-09-19 Thread Vjeran Marcinko
Hi. Can someone point me to place where one can find compiled native parts of Tomcat connectors for Linux/Win ? I'm mostly intrerested in jk and jk2 connector. I noticed jakarta-tomcat-connectors folder, but it has been empty for months. Thanx, Vjeran -- To unsubscribe, e-mail:

POSTing to Tomcat 4.0.x

2002-05-21 Thread Vjeran Marcinko
Hi people. I asked similar question ,but since there was no reply I'm gonna try again - Has anyone successufuly executed POST to Tomcat 4.0.x from some java app using URLConnection class ? I would really like to see this piece of code, since I used some code that I found on the web and it worked

Tomcat 4.0.x bug with POST parameters ?

2002-05-20 Thread Vjeran Marcinko
Hi. Tomcat 4.0.x versions don't acquire POST parameters sent by my applet using java.net.URLConnection class, although Tomcat 3.2.x does everything perfectly. When I want to fetch parameters using request.getParameterNames() (or any other method for acquiring parameters), it provides me with em

Re: Bizzare usage of servlets. And problems ...

2002-05-15 Thread Vjeran Marcinko
- Original Message - From: "Shimon Crown" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, May 15, 2002 10:25 AM Subject: Re: Bizzare usage of servlets. And problems ... > A couple of years back (or maybe even more ) Just van Broeke published > article i

Bizzare usage of servlets. And problems ...

2002-05-15 Thread Vjeran Marcinko
Hi there. Don't ask me why, but I created a servlet that never exits, thus being able to send data to constantly opened response's output stream (this is possible using chunked-encoding response). Yes, i know that HTTP protocol isn't meant to be used for persistent connection, but believe me, m

Re: Tomcat and Apache load-balancing ?

2002-02-13 Thread Vjeran Marcinko
- Original Message - From: <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, February 13, 2002 9:28 PM Subject: Re: Tomcat and Apache load-balancing ? > On Wed, Feb 13, 2002 at 01:00:31PM +0100, Vjeran Marcinko wrote: > >

Tomcat and Apache load-balancing ?

2002-02-13 Thread Vjeran Marcinko
Hi people of good will. I am currently working on load-balance-enabling my web-app, and I noticed that session balancing is solved in Tomcat in such way that Apache's module redirects request to the Tomcat instance which created session. Since I'm only reading about one Apache and multiple Tomcat

Re: Load balancing app context ?

2002-02-10 Thread Vjeran Marcinko
- Original Message - From: <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Sunday, February 10, 2002 10:35 PM Subject: Re: Load balancing app context ? > What you describe is what TC4.0.2 + mod_jk + apache does. You assign a unique > jvmRoute to each of you tomcat

Re: Load balancing app context ?

2002-02-10 Thread Vjeran Marcinko
- Original Message - From: "Jose Solorzano" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, February 10, 2002 2:32 PM Subject: RE: Load balancing app context ? > > What kind of state do you store in those variables? > > With multiple VMs, you can store

Load balancing app context ?

2002-02-09 Thread Vjeran Marcinko
Hi. Just a short question. I have a web-app that has to have some global sharing context for my web-app in Tomcat's load balancing case (multiple JVMs). Till now, I simply was defining all shared variables outside service() method, so different HTTP request can have access to these instance variab