Re: Can different webapps share a context?

2008-05-18 Thread Aleksandar Matijaca
I've had to do this a few times in my life - never easy... One way is to use an in-memory database like hsqldb - ( http://hsqldb.org/ ) - and what you do here is one context sticks an object with a key into the database, and the other context picks it up from the hsqldb - both listen in on a

Re: How to store mod_jk warnings into a file?

2008-02-12 Thread Aleksandar Matijaca
I don't know if this is what you are looking for, but for my Apache (which uses mod_jk) in the config file I have this line: JkLogFile /var/log/jklog.log a.m. On Feb 12, 2008 1:09 PM, Zsolt Koppany [EMAIL PROTECTED] wrote: Hi, I start tomcat with nohup and get lot of mod_jk warnings in

Re: Tomcat 6 UTF-8 GET and POST - please Help..

2008-01-16 Thread Aleksandar Matijaca
] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, January 10, 2008 4:59 PM Subject: Re: Tomcat 6 UTF-8 GET and POST - please Help.. Aleksandar Matijaca a écrit : I will try the filter, and let you know -- I don't think that Struts is too worried about the encoding, while

FOLLOW-UP: Re: Tomcat 6 UTF-8 GET and POST - please Help..

2008-01-10 Thread Aleksandar Matijaca
I have tested the stuff below on JETTY, and both GET and POST work fine. Thanks again, a.m. On Jan 10, 2008 2:06 PM, Aleksandar Matijaca [EMAIL PROTECTED] wrote: Hi there, I am having some issue with submitting foreign language fonts in HTML form to Tomcat. If I set up the FORM

Re: Tomcat 6 UTF-8 GET and POST - please Help..

2008-01-10 Thread Aleksandar Matijaca
struts) tends to also have his default behaviour when decoding POST :) Aleksandar Matijaca a écrit : Hi there, I am having some issue with submitting foreign language fonts in HTML form to Tomcat. If I set up the FORM with method=GET everything works just fine. However, when I use

Re: Tomcat 6 UTF-8 GET and POST - please Help..

2008-01-10 Thread Aleksandar Matijaca
request.setCharacterEncoding(UTF-8), before any call to getParameter(s). a filter or a valve might be a good place :) btw, be carefull, struts (i see you use struts) tends to also have his default behaviour when decoding POST :) Aleksandar Matijaca a écrit : Hi there, I am having some