Re: Mbean uses in Tomcat 5.5.17

2006-07-31 Thread Raju Balugu
Thanks a lot peter. Regards Raju On 7/31/06, Peter Rossbach [EMAIL PROTECTED] wrote: see http://tomcat.apache.org/tomcat-5.5-doc/monitoring.html peter Am 31.07.2006 um 07:27 schrieb Raju Balugu: Hi All , Could you please let me know the uses of Mbean in Tomcat 5.5.17? We recently

JSP Code to capture HTTP headers

2006-07-31 Thread Kaushal Shriyan
Hi ALL I have a sample php code, ?php header(Content-Type: text/html); ? h1ENV/h1 ?php foreach ($_ENV as $key = $value) { echo Key: $key, value: $value; echo br; } ? h1SERVER/h1 ?php foreach ($_SERVER as $key = $value) { echo Key: $key, value: $value; echo br; } ?

Re: Password retries

2006-07-31 Thread Simon O'Malley
Hi Chris, Maurice Thanks for the replies. Was hoping someone would have already done something as I am under a pretty tight deadline. Dont think the denyhosts route will be a goer as hosts.deny will only be writeable as root and dont want to have to run tomcat as root, change permissions, or

Re: Tomcat and OCSP

2006-07-31 Thread Velpi
Does the new support for OCSP in Java 5.0 have any impact on how certificates are handled in Tomcat? http://java.sun.com/j2se/1.5.0/docs/guide/security/pki-tiger.html It looks like it might just work if it is set up right in the java property files. I checked the mailing list archives and

Re: [Tomcat] Looking ofr JSESSIONID in Tomcat

2006-07-31 Thread gaston . azerty
Thanks a lot, Christopher, for your answer, but I am looking for a solution the most generalizable possible. Does it exist an interface or a Mbean in Tomcat responsible for managing the session (and so my cookie JSESSIONID)? Thomas PS: I am currently looking for a Tomcat's test where the

答复: An exception, would anybody tell m e the reason?

2006-07-31 Thread Zhang, Peng
Thank u, it seems I misunderstood the meaning of thread dump. The thread dump was created when the tomcat hang, could you find any clue of the reason? Best Regards - pzhang 张鹏 Server Dept. Telenav Shanghai Inc. Tel:(21)6337 2220 www.telenav.com

Re: JSP Code to capture HTTP headers

2006-07-31 Thread Shinya Koizumi
use these methods %= request.getParameter() % %= request.getParameterNames() % or you look up javax.serlvet.HttpServletRequest - Original Message - From: Kaushal Shriyan [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Monday, July 31, 2006 12:10 AM Subject:

[ANN] LambdaProbe 1.6 is released

2006-07-31 Thread Vlad.Ilyschenko
I am pleased to announce availability of LambdaProbe 1.6 a monitoring tool for Apache Tomcat and JBoss. The new release amongst other things include all-new web based sql console for testing of datasources, which I hope you will find useful. For the full list of changes visit

RE: programmatically sending tomcat a socket?

2006-07-31 Thread Peter Crowther
From: Adam Fisk [mailto:[EMAIL PROTECTED] I'm embedding Tomcat, and I'd like to have programmatically send it a socket I've created (could be a reliable UDP socket subclass, some other special socket), and have Tomcat handle it as if it were a normal socket, expecting incoming HTTP

Weird Issue with Tomcat 4.1.31

2006-07-31 Thread Kaushal Shriyan
Hi when i hit http://localhost:8080/ I get on the web pasge HTTP Status 404 - / type Status report message / description The requested resource (/) is not available. Apache Tomcat/4.1.24

Re: Response time banding

2006-07-31 Thread Kurt Overberg
Do your 2 second requests happen at a particular time of day? In the early morning, when my database vacuum is running, my response times shoot way up (to around 5 seconds). Check to see what else is going on with your system during the times the page response times increase. /kurt On

RE: Tomcat and Sun's Application server

2006-07-31 Thread Jon Hoffman
The thing is, I already have the EJB working and a number of different apps already connect and use them. I would also like to be able to use them through my servlets running in a tomcat cluster (then I could move most of my stuff to tomcat), but I really do not have the time to rewrite

Re: servlet and HTTP authentication

2006-07-31 Thread Kristian Rink
Hey there; and, at first, thanks a lot for the hint. [EMAIL PROTECTED] schrieb: WWW-Authenticate: Basic realm=My Document Management System I'm not sure if tomcat will interpret the resulting Authorization header in the next request, given that you asked him not to authenticate, but you

RE: Tomcat and Sun's Application server

2006-07-31 Thread Jon Hoffman
I tried removing javax.servlet from the j2ee.jar (that was my I have tried cutting out portions of the j2ee.jar that interferes with the servlet.class portion of the last e-mail) but that did not work. I will probably end up having to scrap tomcat :O( since I do not have time to rewrite all of

Re: Weird Issue with Tomcat 4.1.31

2006-07-31 Thread Kaushal Shriyan
On 7/31/06, Kaushal Shriyan [EMAIL PROTECTED] wrote: Hi when i hit http://localhost:8080/ I get on the web pasge HTTP Status 404 - / type Status report message / description The requested resource (/) is not available. Apache

[OT] A question on garbage collecting

2006-07-31 Thread Leon Rosenberg
Hi, I have a question regarding a weird behaviour of the garbage collector, maybe someone here, has more experience with it, and can answer the question. Otherwise sorry for the OT. We have a cache for caching 1000.000 user objects along with many (some hundred thousand) not existing objects

Re: JSP Code to capture HTTP headers

2006-07-31 Thread Velpi
http://shib.kuleuven.be/download/sp/test_scripts/shibenv.jsp.txt -- Velpi Kaushal Shriyan wrote: Hi ALL I have a sample php code, ?php header(Content-Type: text/html); ? h1ENV/h1 ?php foreach ($_ENV as $key = $value) { echo Key: $key, value: $value; echo br; } ? h1SERVER/h1 ?php

Re: JSP Code to capture HTTP headers [includes shameless plug]

2006-07-31 Thread Christopher Schultz
Kaushal, I have a sample php code, [snip] I wanted this to work in JSP(Java Server Pages) How about the SessionSnooper.jsp from this page: http://www.christopherschultz.net/projects/java/ I am the author. -chris signature.asc Description: OpenPGP digital signature

DNS

2006-07-31 Thread Juba
Hello, How do I configure my dns to point to the server where my application is installed in Tomcat? thanks Juba - Mensagem verificada pelo software de Anti-Virus McAfee. FAMERP - STI

Can GlobalNamingResources be accessed without a ResourceLink

2006-07-31 Thread David Uctaa
I am running Tomcat 5.5.16, and I have a couple of DataSources set up in the GobalNamingResources section of my server.xml. Now, I preferably want to be able to access these resources without having to set up a separate Context section for each application, so I can deploy new applications that

Re: Tomcat and Sun's Application server

2006-07-31 Thread Christopher Schultz
Jon, The thing is, I already have the EJB working and a number of different apps already connect and use them. I would also like to be able to use them through my servlets running in a tomcat cluster (then I could move most of my stuff to tomcat), but I really do not have the time to

Re: Can GlobalNamingResources be accessed without a ResourceLink

2006-07-31 Thread Hassan Schroeder
On 7/31/06, David Uctaa [EMAIL PROTECTED] wrote: I am running Tomcat 5.5.16, and I have a couple of DataSources set up in the GobalNamingResources section of my server.xml. Now, I preferably want to be able to access these resources without having to set up a separate Context section for each

Re: DNS [OT]

2006-07-31 Thread Edmund Urbani
Juba wrote: Hello, How do I configure my dns to point to the server where my application is installed in Tomcat? thanks Juba That depends on your DNS server and its config files/administration tools. That's about all I can tell you, since I don't know what DNS software you are using.

RE: Tomcat and Sun's Application server

2006-07-31 Thread Jon Hoffman
Thanks for the reply but I already have the EJBs running in Sun's Application server. I also already have a number of applications (both web based and swing) that access those EJBs, I do not want to change all those other applications to access something else. I also only want one version of the

Re: [OT] DNS

2006-07-31 Thread Christopher Schultz
Juba, How do I configure my dns to point to the server where my application is installed in Tomcat? That depends. What operating system are you running on the machine that you want to modify? ...and do you have a DNS server running on your Tomcat server? DNS configuration on UNIX is usually

Re: Tomcat and Sun's Application server

2006-07-31 Thread Christopher Schultz
Jon, What I need is a way to acces the EJB that are running in the Suns Application Server container from servlets running on a Tomcat Cluster. Thanks again for the reply I think that's what they're talking about. Instead of using j2ee.jar itself (which contains more stuff than necessary --

mod_jk not compiling correctly (apparently) - 'garbled' error

2006-07-31 Thread Tim Hunt
Hi, I can't get mod_jk to work - getting 'garbled' error suggesting it's not compiled against same version of apache? Here's the specifics: Got fresh install of CentOS 4.3 Installed Apache 2.2.2 with # ./configure --enable-rewrite=shared --enable-deflate=shared

Re: Tomcat 5.5.17 can connect to any webserver without mod_jk ?is this true?

2006-07-31 Thread David Smith
In that context, yes. Basically you are setting up a reverse proxy from your Apache/IIS front-end to tomcat. In that event, each connector in tomcat dedicated to a specific Apache/IIS front-end will need the proxyName and proxyPort attributes so it can correctly generate URL links. As for

Apache, mod_jk and Tomcat looses sessions

2006-07-31 Thread Markus
Hi, I've got the following problem on one server using Apache 2.0.54-5 (Debian x86) with mod_jk 1.2.15 (self-compiled) and tomcat 5.5.17: I try to create a redirect to a page with a session-id if there is no session. Seems to be easy, but in combination with apache/mod_jk my servlet redirects

RE: Apache, mod_jk and Tomcat looses sessions

2006-07-31 Thread Markus
Markus wrote on Monday, July 31, 2006 5:34 PM: I've got the following problem on one server using Apache 2.0.54-5 (Debian x86) with mod_jk 1.2.15 (self-compiled) and tomcat 5.5.17: I try to create a redirect to a page with a session-id if there is no session. Seems to be easy, but in

Re: Missing Request Parameters

2006-07-31 Thread rache
This is how the code redirects: if (redirectURL.toUpperCase().startsWith(/SERVLET)) { // routing to another request to the servlet... response.sendRedirect(request.getContextPath() + redirectURL); }

Re: Tomcat Upgrade

2006-07-31 Thread Leon Rosenberg
On 7/31/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Andrew, Our application is currently employed Tomcat 4.0.6. I'd like this to be upgraded to version 4.1.12. Is there documentation which explains a step by step process of how to do this? ok, step by step: download and install

Servlet/session becoming null

2006-07-31 Thread rache
I have this error occuring when loading a jsp: 2006-07-28 17:33:01 StandardWrapperValve[debugjsp]: Servlet.service() for servlet debugjsp threw exception java.lang.NullPointerException at com.premier.ofa.core.TransactionSession.getAttribute(TransactionSession.java:34) at

Re: mod_jk not compiling correctly (apparently) - 'garbled' error

2006-07-31 Thread Christopher Schultz
Tim, I can't get mod_jk to work - getting 'garbled' error suggesting it's not compiled against same version of apache? Here's the specifics: [snip] Installed Apache 2.2.2 with # ./configure --enable-rewrite=shared --enable-deflate=shared \ --enable-alias=shared

Re: Tomcat Upgrade

2006-07-31 Thread Ibrahim . Siddiqui
Andrew, Our website is developed using Vignette Content Management components. These comprise of VCMS and VMCM. We need to upgrade these two versions and due to matrix compatibility issues, we are forced to upgrade Tomcat to 4.1.12. In this upgrade, we don't want to do a parallel

Re: Tomcat Upgrade

2006-07-31 Thread Andrew Miehs
Hi Ibrahim, What do you mean you don't want to do a parallel installation?! How do you want to check if it works?! Install TC 5.5 and java 1.4+compat libs or JVM 1.5 on the test machine, copy the stuff across, and start it and see what happens. You do have a test system? don't you?!

Re: Apache, mod_jk and Tomcat looses sessions

2006-07-31 Thread Christopher Schultz
Markus, I try to create a redirect to a page with a session-id if there is no session. Seems to be easy, but in combination with apache/mod_jk my servlet redirects unlimited because it doesn't recognizes the created session. Btw: Cookies are disabled, this is important. It looks like you

Tomcat does not sense the source modifications!!!

2006-07-31 Thread Ach
Hi all, I have a really bad problem with tomcat 5.5.x. I deploy an app (developed in Eclipse 3.1.2 using tomcat sysdeo plugin) to tomcat. Now I have a index.jsp that is just a: jsp:forward page=/pages/login.jsp/jsp:forward OK? Now it works but I change above line to something like:

Re: Initializing Parameter

2006-07-31 Thread Christopher Schultz
Ryan, Is there a way to initialize an array (or any other Java object, for that matter), so that it is available to all users? I would like to execute some Java methods to precompute and store two arrays to avoid creating them every visit for every user. I read something about param-name

Re: Missing Request Parameters

2006-07-31 Thread Jon Wingfield
Erm. ok. Where does the redirectURL variable come from? Unless it has parameters encoded into it that will be your problem. Also, be a bit wary in using the RequestDumperValve with non-ascii charset data as it can corrupt some parameters:

Re: Tomcat does not sense the source modifications!!!

2006-07-31 Thread Pulkit Singhal
You could remove the war while tomcat is running and then redeploy it On 7/31/06, Ach [EMAIL PROTECTED] wrote: Hi all, I have a really bad problem with tomcat 5.5.x. I deploy an app (developed in Eclipse 3.1.2 using tomcat sysdeo plugin) to tomcat. Now I have a index.jsp that is just a:

RE: Problem while submiting the page

2006-07-31 Thread Propes, Barry L
you've got two different action values but using the same elements to get it there. Don't think you can do that! Probably need to set some conditional in there to make document.formMain.action = '../..' + actionPath + '/' + link + '?uniqeId='+uniqeId + 'ref=' + refName; one time and

RE: Tomcat running as service on XP? Runtime.getRuntime().exec(commandLine)

2006-07-31 Thread Propes, Barry L
you'll need to set Tomcat to run as a service under a username that has Admin rights to the XP box. That should work. I'm doing something similar but with Win2k. -Original Message- From: Warren [mailto:[EMAIL PROTECTED] Sent: Friday, July 28, 2006 4:17 PM To: users@tomcat.apache.org

Re: Missing Request Parameters

2006-07-31 Thread rache
Parameters are either set this way: 1. from the page itself: form class=hidden name=cal action=business_calendar_2.jsp method=post input type=hidden name=windowTitle value=%= windowTitle % input type=hidden name=headTitle value=%= headTitle % 2.

Re: Tomcat Upgrade

2006-07-31 Thread David Smith
For what it's worth, I don't think the changes between 4.0.x and 4.1.x are all that significant -- same servlet spec, same deployment as I remember. I wouldn't be a bit surprised if the point difference in releases had more to do with internal restructuring than anything else. Start with a

RE: Tomcat Upgrade

2006-07-31 Thread Propes, Barry L
I can tell you one thing: 4.0 uses the HTTP connector, 4.1 uses the Coyote connector. At least the flavor of 4.1 I have. -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 12:51 PM To: Tomcat Users List Subject: Re: Tomcat Upgrade For what it's

Re: Initializing Parameter

2006-07-31 Thread Ryan O'Hara
You're looking for init-param. You can add these parameters to any filter or servlet, or at the top-level for the entire webapp, and get them when the filter or servlet runs (or any time you can get an instance of the ServletContext which represents the webapp). The usual way of doing this is to

org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread Aynalem, Seblewengel (Trawick)
Hi there: I am using tomcat 5.5.17 and SQL Server 2000 database with SQL Server 2005 JDBC Driver. OS is Windows XP professional. I have configured web.xml in WEB-INF directory and context.xml in META-INF directory of my application. Both are attached below with this email. I have a login.jsp

Re: Initializing Parameter

2006-07-31 Thread Christopher Schultz
Ryan, Where would this code go that gets and sets the value, so that it would only run once collectively for all users (not once per user)? It's right here: The usual way of doing this is to create a ServletContextListener which implements the init() method, grabs the values from the

Re: Initializing Parameter

2006-07-31 Thread Christopher Schultz
David, ServletContextListener is a new feature of servlet spec 2.4 (tomcat 5.0.x, 5.5.x). Correction: this is available in servlet spec 2.3 (Tomcat 4.x). -chris signature.asc Description: OpenPGP digital signature

Re: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread David Smith
Is your SQL JDBC driver in common/lib? It has to be there for tomcat to set it up as a resource. Also drop the ResourceLink.../ tag from your context definition. Not needed when the resource is defined inside the Context... tag and may confuse tomcat. --David Aynalem, Seblewengel

Re: Initializing Parameter

2006-07-31 Thread Ryan O'Hara
You are creating a ServletContextListener, which must be configured in the listeners section of your web.xml file: simply mention the ServletContextListener in there, and the contextInitialized() method will be called when the webapp is initialized (i.e. once for the life of the webapp). If

RE: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread Aynalem, Seblewengel (Trawick)
Yes I do have SQL JDBC driver in common/lib as sqljdbc.jar and did drop ResourceLink.../ from context.xml file. Another error comes ups as follows: Jul 31, 2006 3:01:05 PM org.apache.catalina.core.AprLifecycleListener lifecycleEvent INFO: The Apache Tomcat Native library which allows optimal

Re: Servlet/session becoming null

2006-07-31 Thread Filip Hanik - Dev Lists
if you are saying the tomcat session is dropped then, two reasons could be: 1. the session cookie is dropped 2. the session has expired (been idle longer than your timeout setting) but your stack trace show TransactionSession, and it could be that your TransactionSession is holding a reference

Re: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread Filip Hanik - Dev Lists
looks like your context XML file is not a valid XML format Filip Aynalem, Seblewengel (Trawick) wrote: Yes I do have SQL JDBC driver in common/lib as sqljdbc.jar and did drop ResourceLink.../ from context.xml file. Another error comes ups as follows: Jul 31, 2006 3:01:05 PM

Re: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread David Smith
The stack traces mention that the Resource .../ tag is in web.xml (and apparently not well formed xml to boot). Please remove it. It should only be in context.xml with a resource-ref tag in web.xml. If there are further stack traces, could you post your new context.xml and web.xml? --David

RE: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread Aynalem, Seblewengel (Trawick)
Hi Filip: I checked it... what is it missing? Many thanks your help. -Original Message- From: Filip Hanik - Dev Lists [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 3:12 PM To: Tomcat Users List Subject: Re: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC

RE: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread Saha Rabindra N
You could open your context.xml file using IE browser and that will tell you the syntax problem, if any. -Original Message- From: Aynalem, Seblewengel (Trawick) [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 3:18 PM To: Tomcat Users List Subject: RE:

RE: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread Aynalem, Seblewengel (Trawick)
Hi David: Thanks for your quick reply. I don't have Resource .../ tag in web.xml. Here is the updated context.xml, ResourceLink .../ dropped from it and web.xml as it were before. context.xml file ?xml version=1.0 encoding=UTF-8? Context debug=0 displayName=ISOTracking

Re: Initializing Parameter

2006-07-31 Thread Ryan O'Hara
One more question: What is the best method for retrieving the values? Thanks again. -Ryan On Jul 31, 2006, at 2:47 PM, David Smith wrote: ServletContextListener is a new feature of servlet spec 2.4 (tomcat 5.0.x, 5.5.x). The essential parts are: 1. write a class implementing the

RE: Apache, mod_jk and Tomcat looses sessions

2006-07-31 Thread Markus
Christopher Schultz wrote on Monday, July 31, 2006 6:42 PM: Markus, I try to create a redirect to a page with a session-id if there is no session. Seems to be easy, but in combination with apache/mod_jk my servlet redirects unlimited because it doesn't recognizes the created session.

RE: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread Aynalem, Seblewengel (Trawick)
Thanks a lot... I do need to have a space in context.xml file. That solved the problem with xml syntax. I now seem to have problem with database connection. Here is the code I use to connect... InitialContext ic=null; DataSource ds=null; Connection conn = null; try { // testing

Re: Initializing Parameter

2006-07-31 Thread Christopher Schultz
Ryan, One more question: What is the best method for retrieving the values? You only have one option: ServletContext.getInitParameter There are, however, some tools that can help you load data that is not String-based. Jakarta commons beanutils package (specifically the 'converters' portion)

Re: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread David Smith
Hmmm connection refused. Is your server listening for connections at jdbc:sqlserver://localhost:1433 ? Can you verify it independently? --David Aynalem, Seblewengel (Trawick) wrote: Thanks a lot... I do need to have a space in context.xml file. That solved the problem with xml

Re: Apache, mod_jk and Tomcat looses sessions

2006-07-31 Thread Christopher Schultz
Markus, If the session is mandatory, I recommend changing: request.getSession(false) to request.getSession(true) Thanks for your quick answer. The problem I want to solve is only to create a session if it is really needed, so #redirectToURLWithSID is a little bit more

RE: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread Aynalem, Seblewengel (Trawick)
Sorry to ask this... how do you verify server connection independently. This is my first time configuring doing database connection. Thanks a lot, -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 3:49 PM To: Tomcat Users List Subject: Re:

Re: Initializing Parameter

2006-07-31 Thread David Kerber
Where are you getting the parameter from? Is it going to change a lot? I store parameters in the server.xml in the GlobalNamingResources section as Environment entries, and then retrieve them with a call to this routine: public static String getEnvironmentVariable( String envVarName,

Re: Apache, mod_jk and Tomcat looses sessions

2006-07-31 Thread Christopher Schultz
Markus, If the session is mandatory, I recommend changing: request.getSession(false) to request.getSession(true) Thanks for your quick answer. The problem I want to solve is only to create a session if it is really needed, so #redirectToURLWithSID is a little bit more complicated

Re: Initializing Parameter

2006-07-31 Thread David Smith
Christopher Schultz wrote: Ryan, One more question: What is the best method for retrieving the values? You only have one option: ServletContext.getInitParameter There are, however, some tools that can help you load data that is not String-based. Jakarta commons beanutils package

Re: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-07-31 Thread David Smith
Well this is supposed to be an SQL Server 2000 database server. Use it's client tool to connect to the database. If successful, your server is running. I'm not familiar with the product, but if you can find it in the preferences, make sure you connect via TCP just like tomcat would.

Re: mod_jk without worker.properties?

2006-07-31 Thread Christopher Schultz
Robert, So I have a rather nice dynamic configuration using mod perl Perl stanzas the only thing standing in my way of making it 100% dynamic is the worker port for mod_jk. Why oh why must this be configured via a separate properties file? The changelog for mod_jk says this under mod_jk

Re: Tomcat 5.5.17 can connect to any webserver without mod_jk ?is this true?

2006-07-31 Thread Mark Thomas
Raju Balugu wrote: Hi Mark ,I have a doubt on this again ,I got one more link stataing we can use this feature by acting as the proxy.. http://tomcat.apache.org/tomcat-5.5-doc/proxy-howto.html just have a look and let me know ur idea. This isn't *any* web server as per your previous post it

MaxClients - MaxThreads relationship

2006-07-31 Thread Ramdas . Hegde
I am using Apache with mod_jk 1.2.10(prefork MPM) running against Tomcat 5 within JBoss on Linux using JDK 1.4.2.07 Reading thru some of the postings within this Forum, it looks like we would expect to see as many threads in tomcat as the number of MaxClients defined in Apache. In our setup, we

HTTP Status 404 - /jsp-examples/

2006-07-31 Thread Prahlad . Thakur
Can't get the jsp-example to run, getting 404 error. I have installed tomcat 5.0.28 under AIX 5.3 and Java SDK 1.4.2. The service is running under the same account that I used to install. I have setup the following environment variables: CATALINA_HOME CATALINA_BASE

Re: HTTPS connector and clientAuth=want: how to retrieve client cert in servlet?

2006-07-31 Thread Shankar Unni
Shankar Unni wrote: However, I'm stuck trying to retrieve the client certificate from the ServletRequest in the servlet itself. Q: How do I get to the client's X.509 certificate? Help! I forgot to mention: the attributes that I do see in HttpServletRequest are: req attrName =