Re: HTTPS and Virtual Hosts

2008-09-24 Thread Steffen Heil
Hi Actually, most answers in this thread are more or less outdated. It IS possible to use one IP with multiple certificates, just not with tomcat to far. There IS (since June 2003, that is more than 5 years!) a TLS extension SNI (server name indication) that does the trick: It sends Information a

Problem with AJP connector

2008-09-24 Thread Woytasik Joe
We are running IIS6 and Tomcat 6, with the AJP connector forwarding traffic from IIS to Tomcat. Everything has been working well until we started running some load tests. When we ramp up our testing we start to see the following errors in the connector log. [Wed Sep 24 14:28:42 2008] [3456:1504

RE: Tomcat unable to find jars when deployed from Eclipse

2008-09-24 Thread Larry Isaacs
> -Original Message- > From: Bai Shen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 24, 2008 2:54 PM > To: Tomcat Users List > Subject: Tomcat unable to find jars when deployed from Eclipse > > I'm running Eclipse 3.4 with Tomcat 6.0.18 configured as a server. > After a > bit of

Tomcat unable to find jars when deployed from Eclipse

2008-09-24 Thread Bai Shen
I'm running Eclipse 3.4 with Tomcat 6.0.18 configured as a server. After a bit of consternation, I was able to see my test html and jsp files. However, for some reason, my servlet doesn't see the jar files it needs unless I put them in WebContent\WEB-INF\lib. Now I've already defined them in Eclip

Re: manipualting a select list from within an event handler

2008-09-24 Thread Johnny Kewl
- Original Message - From: "Robert Welz" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, September 24, 2008 4:20 PM Subject: manipualting a select list from within an event handler Manipulating checkboxes from withing an onchange event handler works but I'd like to man

Re: Some Prilim questions

2008-09-24 Thread Pid
David Smith wrote: > I have no idea where you are going with this ... it makes no sense to > the original question. Don't worry. I think they're testing a humour module. p > --David > > Martin Gainty wrote: >> the referenced jndi lookup in the webapp context is located in India and the >> DB i

Re: Some Prilim questions

2008-09-24 Thread David Smith
I have no idea where you are going with this ... it makes no sense to the original question. If you mean the webapp is hosted on a geographically distant place from the database server, then you'll have latency like no tomorrow regardless of whether a database pool is used or not. The point and r

Re: j_security_check requires session

2008-09-24 Thread Mark Thomas
[EMAIL PROTECTED] wrote: > I am having a problem posting credentials to j_security_check for > form-based authentication. > > It seems that tomcat expects that I already have a session established > before posting the username and password. If I don't already have a > JSESSIONID cookie, j_securi

j_security_check requires session

2008-09-24 Thread discip
I am having a problem posting credentials to j_security_check for form-based authentication. It seems that tomcat expects that I already have a session established before posting the username and password. If I don't already have a JSESSIONID cookie, j_security_check returns a 408. Unfortunatel

Re: [OT] RE: manipualting a select list from within an event handler

2008-09-24 Thread Robert Welz
Oops, sorry... Robert Am 24.09.2008 um 16:56 schrieb Peter Crowther: From: Robert Welz [mailto:[EMAIL PROTECTED] Manipulating checkboxes from withing an onchange event handler works but I'd like to manipulate a select list like in this code example, but without luck? I'd appreciate some little

[OT] RE: manipualting a select list from within an event handler

2008-09-24 Thread Peter Crowther
> From: Robert Welz [mailto:[EMAIL PROTECTED] > Manipulating checkboxes from withing an onchange event handler works > but I'd like to manipulate a select list like in this code example, > but without luck? I'd appreciate some little help, that would be > fantastic. [Javascript elided] Ask on a J

Re: Configuration of jk_connector

2008-09-24 Thread Mark Thomas
jon80 wrote: > We're updating configuration of jk_connector on Apache Httpd 2.2.9 and Jonas > 4.6.6. Instructions at http://tldp.org/HOWTO/MMBase-Inst-HOWTO/jk2.html. JK2 is deprecated. You should use mod_jk of mod_proxy_http. > re: chown root:root /usr/local/apache2/modules/jkjni.so > > We're

Configuration of jk_connector

2008-09-24 Thread jon80
We're updating configuration of jk_connector on Apache Httpd 2.2.9 and Jonas 4.6.6. Instructions at http://tldp.org/HOWTO/MMBase-Inst-HOWTO/jk2.html. re: chown root:root /usr/local/apache2/modules/jkjni.so We're unable to find the file jkjni.so within the /modules sub-directory where the source

manipualting a select list from within an event handler

2008-09-24 Thread Robert Welz
Manipulating checkboxes from withing an onchange event handler works but I'd like to manipulate a select list like in this code example, but without luck? I'd appreciate some little help, that would be fantastic. Thank's for some input here ;) kind regards, Robert function CheckAuswahl(c

RE: Some Prilim questions

2008-09-24 Thread karthikn
Hi Good Joke :( With regards Karthik -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2008 7:19 PM To: Tomcat Users List Subject: RE: Some Prilim questions the referenced jndi lookup in the webapp context is located in India and the DB i

RE: Some Prilim questions

2008-09-24 Thread Martin Gainty
the referenced jndi lookup in the webapp context is located in India and the DB is in Ithaca NY the Indian JNDI lookup is considerably slower than 'ordinary JDBC connection' from NY With Warm Regards Martin __ Disclaimer and confidentiality note Ev

RE: Some Prilim questions

2008-09-24 Thread karthikn
Hi Ok, I have read the link provided This answers the 2nd Question What about the first Question ? >> Which is faster JNDI Based Connection pool / ordinary JDBC based connection >> / close ? With regards karthik -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: W

RE: Some Prilim questions

2008-09-24 Thread Martin Gainty
read this http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a c

Re: Some Prilim questions

2008-09-24 Thread David Smith
> > 1) Which is faster JNDI Based Connection pool / ordinary JDBC based > connection / close ? JNDI based connection pool. The connections are potentially already formed and ready for use when you call for one. Ordinary JDBC would explicitly create a new connection everytime you need one

Some Prilim questions

2008-09-24 Thread karthikn
Hi Spec: O/s : Unix HP 11i Tomcat : 6.0.18 J2sdk : 1.6 DB : Oracle 10g Question 1) Which is faster JNDI Based Connection pool / ordinary JDBC based connection / close ? 2) In JNDI / context based Connection pool for the code given below InitialContext ic = new InitialCon

Re: Tomcat thread blocking

2008-09-24 Thread Johnny Kewl
- Original Message - From: "Darren Kukulka" <[EMAIL PROTECTED]> To: Sent: Wednesday, September 24, 2008 9:37 AM Subject: Tomcat thread blocking Hi, I've recently observed a scenario in Tomcat 6.0.13 64-bit under SUN JDK 1.6_03 (x64 Windows platform), where a large number of thread

Re: Tomcat thread blocking

2008-09-24 Thread Mark Thomas
Darren Kukulka wrote: > Hi, > > I've recently observed a scenario in Tomcat 6.0.13 64-bit under SUN JDK > 1.6_03 (x64 Windows platform), where a large number of threads show a > status of BLOCKED. > > Can someone please advise the easiest and most effective way of helping > identify the original

Re: Tomcat6.0.18+Log entries upon shutting down TomCat

2008-09-24 Thread Mark Thomas
Johnny Kewl wrote: > Look I dont know, I've never seen this, we dont run the latest as policy... > But I would drop back a few TC versions... Given http://tomcat.apache.org/security-6.html, downgrading is really bad advice. Added to which, it won't change anything. > I think a wrapper represents a

Re: Problem with mod_jk installation

2008-09-24 Thread Rainer Jung
Ken Bowen wrote: Hi all, I'm trying to setup a new virtual machine running CentOS 5 Linux over VMWare. Apache Httpd 2.2.3 was already installed and running. I've installed Java JDK 1.5.0_16 and Tomcat 5.5.27, which is running fine. I downloaded mod_jk-1.2.26-httpd-2.2.6.so and placed it with a

Re: tomcat_trend.pl script is showing Unknown log entry for mod_jk

2008-09-24 Thread Rainer Jung
[EMAIL PROTECTED] wrote: Hi Ankush, As far as I know that scripts is not really maintained any more and need a fair amount of tweaking. I might be wrong though. That's true. What kind of statistics do you want to produce? Nowadays it's more convenient to not use JkRequestLogFormat (which mixe

Tomcat thread blocking

2008-09-24 Thread Darren Kukulka
Hi, I've recently observed a scenario in Tomcat 6.0.13 64-bit under SUN JDK 1.6_03 (x64 Windows platform), where a large number of threads show a status of BLOCKED. Can someone please advise the easiest and most effective way of helping identify the original cause of the block?or have I