Tomcat clustering

2008-05-27 Thread Ch Praveena
Hi all, I want to test tomcat 6 clustering when deploying my war file written using Echo2 and hibernate. Please let me know if anyone have proper and specific documentation other than the HOW-TO!!! Please let me know at the earliest. Thank you -- -Coolest Regards, Praveena Chalamcharl

Re: jsp session values - setting and getting problems

2008-05-27 Thread Kimberly Begley
Hi, The starting point of the app is the user uploading a zip file the file is processed and a summary of the results displayed (in the form I spoke of). It's basically a form that doesn't have any parameters but displays a button that goes to the report.jsp page when pushed (at least on my local

Re: jsp session values - setting and getting problems

2008-05-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kimberly, Kimberly Begley wrote: | Hi, | I have a jsp form that sets session attributes as such: | session.setAttribute("totals",totals); | session.setAttribute("failures",failures); | session.setAttribute("skips",skips); | | and then the for

Re: Force authentication with client certificate when accesing to a directory

2008-05-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Luis (and Mark), Mark Thomas wrote: | Luis Pascual Forner wrote: |> Thanks Mark, |> |> It's mandatory to list the valid users in tomcat-users.xml? |> I don't know in advance the users. I admit any users that |> have a valid certificate. It's possible

jsp session values - setting and getting problems

2008-05-27 Thread Kimberly Begley
Hi, I have a jsp form that sets session attributes as such: session.setAttribute("totals",totals); session.setAttribute("failures",failures); session.setAttribute("skips",skips); and then the form directs to the report.jsp page as follows: where the values are supposed to be retrieved li

Re: Tomcat Comet Question

2008-05-27 Thread Filip Hanik - Dev Lists
try the simplest thing first, upgrade to 6.0.16, in terms of your config, you have tcnative-1.dll in your PATH, but you haven't configured the APR connector, you have configured NIO (which works for comet) and the regular blocking (which doesn't work for comet) Filip Adam Kaupisch wrote: I

Re: web.xml documentation

2008-05-27 Thread David Smith
To be more specific, servlet spec 2.4 is available at: http://jcp.org/aboutJava/communityprocess/final/jsr154/index.html Servlet spec 2.5 which governs tomcat 6 is available at: http://jcp.org/aboutJava/communityprocess/mrel/jsr154/index2.html --David Steve Ochani wrote: On 27 May 2008 at

Re: Tomcat Comet Question

2008-05-27 Thread Alex Barclay
Adam Kaupisch wrote: I am having trouble getting Comet to work and was hoping someone knows what my problem is... I am running 6.0.13 on windows XP (yea, I need to change to linux, I know)...anyway, I went through getting the APR setup and I believe I have done so...based on when I start tom

Tomcat Comet Question

2008-05-27 Thread Adam Kaupisch
I am having trouble getting Comet to work and was hoping someone knows what my problem is... I am running 6.0.13 on windows XP (yea, I need to change to linux, I know)...anyway, I went through getting the APR setup and I believe I have done so...based on when I start tomcat up, I get this messa

Re: tomcat jmx and INFO: Port busy 8009 java.net.BindException: Address already in use

2008-05-27 Thread sudip shrestha
Thanks... On 5/27/08, Filip Hanik - Dev Lists <[EMAIL PROTECTED]> wrote: > you're not trying to configure a JMX connector, you're trying to > configure an AJP connector as defined by > > protocol="AJP/1.3" /> > > > Filip > sudip shrestha wrote: >> with tomcat 5.5.20 and mx4j-tools.jar at comm

Re: tomcat jmx and INFO: Port busy 8009 java.net.BindException: Address already in use

2008-05-27 Thread Filip Hanik - Dev Lists
you're not trying to configure a JMX connector, you're trying to configure an AJP connector as defined by Filip sudip shrestha wrote: with tomcat 5.5.20 and mx4j-tools.jar at common/lib and the following setting: I get the following startup log: INFO: Starting Coyote HTTP/1.1 on http-8080

Re: web.xml documentation

2008-05-27 Thread Steve Ochani
On 27 May 2008 at 17:24, Marcos Molina wrote: > Hi people, > > Can anyone tell me where can i read something of how web.xml file > works ? > I try search but not found nothing good. > Thanks a lot. It's detailed in the Java Servlet Specification available at www.jcp.org but the basics are in a

web.xml documentation

2008-05-27 Thread Marcos Molina
Hi people, Can anyone tell me where can i read something of how web.xml file works ? I try search but not found nothing good. Thanks a lot. Marcos - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail:

Re: Many web applications

2008-05-27 Thread Martin
Is there a reason why you would want 10,000 separate and distinct webapps Can you envision a component-based architecture which would utilise n number of struts-taglibs for view n number of interceptors for controller layer and n number of DB procedures? in this way webapp2 can use the same ta

tomcat jmx and INFO: Port busy 8009 java.net.BindException: Address already in use

2008-05-27 Thread sudip shrestha
with tomcat 5.5.20 and mx4j-tools.jar at common/lib and the following setting: I get the following startup log: INFO: Starting Coyote HTTP/1.1 on http-8080 May 27, 2008 2:23:40 PM org.apache.jk.common.ChannelSocket init INFO: JK: ajp13 listening on /0.0.0.0:8009 May 27, 2008 2:23:40 PM org.apache

Re: Code Injection Tomcat 6

2008-05-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter, Peter Stavrinides wrote: | The one problem though is that these arcane methods we have been | using (encoding output, coding some validation checks, using prepared | statements etc..) are not scalable enough Really? I wasn't aware that conver

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-27 Thread Mark Thomas
karthikn wrote: Hi Just want to confirm the form for "Load balancing" issues Is Apache 2.2.8 is compatible to work with following 1) TOMCAT 6.0.16 2) mod_jk-1.2.26-httpd-2.2.4.so (win32) 3) WIN2000 (spk 4) 4)JSDK 1.6 Should be fine. Mark ---

Re: Binding Tomcat to localhost

2008-05-27 Thread Gregor Schneider
ok, ok, ok - u're all correct - sorry had some tomatoes in my eyes thanks gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2 gpgp-key available @ http://pgpkeys.pca.dfn.de:11371 --

Re: Force authentication with client certificate when accesing to a directory

2008-05-27 Thread Mark Thomas
Luis Pascual Forner wrote: Thanks Mark, It's mandatory to list the valid users in tomcat-users.xml? I don't know in advance the users. I admit any users that have a valid certificate. It's possible? Yes, but only at the connector level which probably isn't the degree of control you want. ht

Re: catalina.out file

2008-05-27 Thread Filip Hanik - Dev Lists
*http://tinyurl.com/6obbgk* http://tomcat.markmail.org/search/?q=cronolog%20catalina.out#query:cronolog%20catalina.out%20list%3Aorg.apache.tomcat.users+page:1+state:facets Kaushal Shriyan wrote: Hi My Catalina.out file is 20GB, How can i safely remove it and then create it again Thanks and