Re: Native connector startup problem

2006-05-26 Thread Marc Farrow
I am making a blind stab in the dark here, but it seems as though your Tomcat AJP connector is listening is on another port than what your actual AJP is running on. On 5/26/06, Fenlason, Josh [EMAIL PROTECTED] wrote: Thanks for the suggestion, but the port isn't in use. If I disable the

Re: Native connector startup problem

2006-05-26 Thread Marc Farrow
Then I am way off base. On 5/26/06, Fenlason, Josh [EMAIL PROTECTED] wrote: I don't follow what you're getting at. I'm just trying to get Tomcat to startup. Apache isn't up yet. I have Tomcat's HTTP connector disabled. The only two ports that Tomcat is using is the shutdown port and the ajp

RE: jsessionid

2006-05-26 Thread Gilbert, Antoine
I tried too, no success :p -Original Message- From: Marc Farrow [mailto:[EMAIL PROTECTED] Sent: May 26, 2006 9:16 AM To: Tomcat Users List Subject: Re: jsessionid Oh yeah! Parameters are case sensitive. You need to make sure the case is the same as what is produced automatically. I

Re: Native connector startup problem

2006-05-26 Thread Martin Gainty
Good Morning Josh- You asked Yoav Shapira (from Apache) on a very similar topic and he provided a suggestion last November I would be interested to know what were the results when you followed his suggestion? Thanks, Martin -- *

RE: Native connector startup problem

2006-05-26 Thread Fenlason, Josh
Are you talking about the thread I had started regarding build the native connector on HP? http://marc.theaimsgroup.com/?l=tomcat-devm=113156765527679w=2 If so, I don't believe that is relevant to my current issue. , Josh. -Original Message- From: Martin Gainty [mailto:[EMAIL

Re: problem in GC tuning

2006-05-26 Thread Michael Echerer
Prashant kumar wrote: Hi All, 1) Is there any means by which GC takes less CPU, I mean that it can take longer time to complete its one cycle (as memory is not a constraint) ? You've set quite a lot of heap 3400m. Do you really need that much memory? The more you set, the more the

can the servlet instantiation be patched?

2006-05-26 Thread Leon Rosenberg
Hi, sorry if my research hasn't been very deep, but does someone know how to patch the servlet instantiation in tomcat the easiest way? The background is, that I'd like to insert an own class (via java.lang.reflect.Proxy) between the connector and the actual servlet instance to perform some

Re: Re: [help] blank index.jsp on Tomcat 5.5.9

2006-05-26 Thread Garner Shawn
I tried a jsp:forward page=/welcome.jsf/ and it worked. I thought the welcome page had to be a .jsp or .html according to the servlet spec? I'll try removing the white space before the redirect or forward and see if that works. Shawn -- Forwarded message -- From: Garner Shawn

Re: Re: [help] blank index.jsp on Tomcat 5.5.9

2006-05-26 Thread Hassan Schroeder
On 5/26/06, Garner Shawn [EMAIL PROTECTED] wrote: I thought the welcome page had to be a .jsp or .html according to the servlet spec? ? Where do you see that in the spec? -- Hassan Schroeder [EMAIL PROTECTED]

Re: can the servlet instantiation be patched?

2006-05-26 Thread Leon Rosenberg
I'm not sure I will have control of the end of the servlet execution with the filter, would I? regards Leon On 5/26/06, Tim Funk [EMAIL PROTECTED] wrote: You might have an easier time using a Filter. But this might not offer the same amount of granularity. (Using a HttpServletRequestWrapper()

Re: HOWTO remove username/password from logging to tomcat logs

2006-05-26 Thread david.delbecq
Are you sure this is your config? Your mail: I am using .Form Based Authentication using Memory Realm via tomcat-users.xml file Your web.xml: login-config auth-methodFORM/auth-method realm-nameJDBCRealm/realm-name also, might be good if you check / send the context.xml of your webapp.

Re: can the servlet instantiation be patched?

2006-05-26 Thread Tim Funk
Yes you will ... doFilter(...) { // log and set other timing variables try { chain.doFilter(...) } finally { /* servlet done executing - log some more */ } } If the filter is invoked on includes and forwards too - you can also get more granually logging. -Tim Leon

How do I configure Tomcast HTTP server to generate working links for French file names in Tomcat Directory Listing?

2006-05-26 Thread Ramez Ghazzaoui
Hi, I have exposed a specific Windows file system folder on my Tomcat HTTP 5.5.9 server box's local hard drive so I can access files in that folder remotely. For simplicity, let us say I've inserted the following Context in my server.xml: Context path=/music docBase=c:\my_cds\music\

Re: can the servlet instantiation be patched?

2006-05-26 Thread Leon Rosenberg
Thanx tim, I have one last question, which would be probably the hardest to answer... How do I now _which_ servlet is behind me in the chain? regards Leon On 5/26/06, Tim Funk [EMAIL PROTECTED] wrote: Yes you will ... doFilter(...) { // log and set other timing variables try {

RE: Tomcat 5.0.28 reaches OS open files limit

2006-05-26 Thread mnoel
I have a problem with some tomcat servers that regularly start thowing exceptions about too many open files (the stacktrace is in a network socket aperture). One solution is increasing the ulimit but would disabling http keepalives reduce the open file count? Do you use

Re: Tomcat 5.0.28, Socket hanging on sending 20KB data for 16 minutes -Fixed!!

2006-05-26 Thread Kumar Pandey
OK we finally pinnned the issue down to a client's proxy server. We have few ajax refreshes happening on our html pages. Under certain conditions IE sends a RST when its unable to serve these requests (you can quickly verify this by running ethreal while viewing new Yahoo pages with real time

Tomcat Web admin

2006-05-26 Thread Mario Henley Becerril Geldis
Hi, I have installed tomcat 5.5.17 and web administration tool. After to put login and password, I get that error: HTTP Status 403 - Access to the requested resource has been denied type Status report

Re: Tomcat Web admin

2006-05-26 Thread Georg Sauer-Limbach
The admin application is by default protected by security-constraints which are defined in its web.xml file. In the delivery version, the admin application required a user with the admin role. You may remove the security constraints (not recommended except for development purposes) or create a

Re: HOWTO remove username/password from logging to tomcat logs

2006-05-26 Thread Filip Hanik - Dev Lists
this is JK/AJP connector, and it sucks, cause you can't remove it. later versions of tomcat its only logging this under debug. Filip Terry Orechia wrote: How do I control the logging of username/password in tomcat logs when a user logs into the tomcat website. There are no logging

Re: How do I configure Tomcast HTTP server to generate working links for French file names in Tomcat Directory Listing?

2006-05-26 Thread Filip Hanik - Dev Lists
you can create a filter that does response.setContentType(UTF-8) or whatever encoding you need filip Ramez Ghazzaoui wrote: Hi, I have exposed a specific Windows file system folder on my Tomcat HTTP 5.5.9 server box's local hard drive so I can access files in that folder remotely. For