Re[8]: Tomcat/4.1.31 - SSL Troubles

2005-04-14 Thread Andrey
Hello, Wednesday, April 13, 2005, 11:19:00 PM, you wrote: Well so far that is normal, what isn't normal is that the browser isn't sending another GET request for https://62.86.16.101/index.jsp what happens if you request that URL directly? Hang on you know what is happening? I bet

Re: port number

2005-04-14 Thread t.n.a.
Magnotta, Salvatore wrote: I think what he is saying is sending the requests to the AJP12 and AJP13 workers. Look in your Tomcat workers.properties file and make sure you load the mod_jk in your Apache httpd config file. -Original Message- From: Viorel Dragomir [mailto:[EMAIL PROTECTED]

Tomcat 4 issue help HTTP 404

2005-04-14 Thread Manoj Thomas
Getting HTTP 404 error while trying to run a servlet. It says resourse not found Please help! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: port number

2005-04-14 Thread t.n.a.
Tim Funk wrote: You need let apache forward the appropriate requests to tomcat. The different ways you can do that can be found here: http://jakarta.apache.org/tomcat/faq/connectors.html -Tim Thank you for the informative link: I'll try to set up such a configuration and see what happens.

Precompilation of tag files

2005-04-14 Thread Bernhard Slominski
Hi, after getting the jsp precompilation finally working, I want also want to do the precompliation for tag files. I'm using tomcat 5.5.7 on both Windows 2000 and Sun Solaris. So something like this: %@ taglib prefix=mytag tagdir=/WEB-INF/tags % mytag:header/ The precompilation task generates

Why does this JkCoyoteHandler message appears?

2005-04-14 Thread Zsolt Koppany
Hi, The message below appears very often. How can I fix it? Apr 13, 2005 11:54:24 PM org.apache.jk.server.JkCoyoteHandler action INFO: Response already commited TC-5.0.27 Zsolt - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Tomcat 4x - Delayed Startup when connected to network

2005-04-14 Thread Shimon_Crown
I found the problem here. Using the -debug startup option I saw that Tomcat was hanging on the line Loading startup class. Immediately after this the Catalina classloader is called to create a class. The problem was that we use security profiles located on a remote computer. For some reason this

Re[9]: Tomcat/4.1.31 - SSL Troubles

2005-04-14 Thread Andrey
Hello, HTTPS: GET /application/index.html HTTP/1.1 Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */* Accept-Language: lv Accept-Encoding: gzip, deflate User-Agent:

clustering without loadbalancing

2005-04-14 Thread Gaurav Bansal
I want to form a two node cluster of Tomcat servers which can failover but there should be no load balancing. But it should support session replication. This should be in such a way that all request are coming to one server(active one) and other is completely free(passive one). so if this

clustering without loadbalancing

2005-04-14 Thread Gaurav Bansal
I want to form a two node cluster of Tomcat servers which can failover but there should be no load balancing. But it should support session replication. This should be in such a way that all request are coming to one server(active one) and other is completely free(passive one). so if this active

Re: clustering without loadbalancing

2005-04-14 Thread David Rees
On 4/14/05, Gaurav Bansal [EMAIL PROTECTED] wrote: I want to form a two node cluster of Tomcat servers which can failover but there should be no load balancing. But it should support session replication. I assume that you want to do it with Apache and have mod_jk handle the distribution of

RE: How do I restrict access to webapps applications from browser users?

2005-04-14 Thread Darryl Wilburn
Another option would be the BadInputFilterValve. I can't really speak to that option as I have not used it. But, maybe someone else has? Darryl __ Do you Yahoo!? Yahoo! Small Business - Try our new resources site!

Re: ThreadPool logFull

2005-04-14 Thread David Rees
On 4/13/05, Patty O'Reilly [EMAIL PROTECTED] wrote: I'm running tomcat 5.0.30. After running for a week or so the server begins to slow down and finally crashes because it is out of threads. I can see the java processes accumulating day by day. Send the process a -QUIT signal if on Linux,

RES: RES: How can I create a digest password - digest.bat is the key!

2005-04-14 Thread Paulo Alvim
Thank you... My English is not so good...but what I'd like to say is that if these admins and webadmins guys are editing the configuration files and typing the passwords as they are...it's easier for an internal observer racker. If the pass would be encrypted it would be 'a little' more

Re: clustering without loadbalancing

2005-04-14 Thread Gaurav Bansal
is apache necessary for this and where can i get the details regarding this becoz i m new to tomcat --- David Rees [EMAIL PROTECTED] wrote: On 4/14/05, Gaurav Bansal [EMAIL PROTECTED] wrote: I want to form a two node cluster of Tomcat servers which can failover but there should be no load

RE: clustering without loadbalancing

2005-04-14 Thread Peter Crowther
From: Gaurav Bansal [mailto:[EMAIL PROTECTED] is apache necessary for this No - in fact, it merely introduces another single point of failure, which I assume is what you want to avoid. However, you need *something* that will choose whether the primary or standby instance receives any given

RE: apache + tomcat + JK connector configuration

2005-04-14 Thread Trung Nguyen
Are you using load balance in your app? If not, you probably don't need this line: worker.worker1.lbfactor=50 Try to use this configuration in the server.xml Connector className=org.apache.ajp.tomcat4.Ajp13Connector port=6969 minProcessors=5 maxProcessors=75

RE: Apache Tomcat JK Mod

2005-04-14 Thread Phillip Qin
JkMount /context/* worker1 JkMount /context worker1 -Original Message- From: Geoff Wiggs [mailto:[EMAIL PROTECTED] Sent: April 13, 2005 8:16 PM To: tomcat-user@jakarta.apache.org Subject: Apache Tomcat JK Mod I know this question has probably been asked 1000 times, but here I go

RE: Why does this JkCoyoteHandler message appears?

2005-04-14 Thread Phillip Qin
Check your code. Various reasons will cause this INFO. -Original Message- From: Zsolt Koppany [mailto:[EMAIL PROTECTED] Sent: April 14, 2005 4:52 AM To: Tomcat Users List Subject: Why does this JkCoyoteHandler message appears? Hi, The message below appears very often. How can I fix

RE: Apache Tomcat JK Mod

2005-04-14 Thread Geoff Wiggs
I tried this, but I still get sent to the Tomcat splash page. The url I am trying to translate to is www.orcastech.com/home/ . Any more clues? VirtualHost * ServerName www.servername.com RewriteEngine On RewriteRule (.*) /home$1 JkMount /home/*

RE: Apache Tomcat JK Mod

2005-04-14 Thread Phillip Qin
Is there an index.jsp in your context? -Original Message- From: Geoff Wiggs [mailto:[EMAIL PROTECTED] Sent: April 14, 2005 10:37 AM To: 'Mladen Turk' Cc: tomcat-user@jakarta.apache.org Subject: RE: Apache Tomcat JK Mod I tried this, but I still get sent to the Tomcat splash page.

session-timeout

2005-04-14 Thread Cédric Buschini
Hi every, from web.xml: session-config session-timeout30/session-timeout /session-config Does the session-timeout refer to an idle session or an active session ? Thk in advance Cedric - To unsubscribe, e-mail: [EMAIL

Re: session-timeout

2005-04-14 Thread Tim Funk
If more than idle for 30 minutes. -Tim Cédric Buschini wrote: Hi every, from web.xml: session-config session-timeout30/session-timeout /session-config Does the session-timeout refer to an idle session or an active session ?

RE: session-timeout

2005-04-14 Thread Jay Burgess
Think of the timeout as a 30 minute countdown timer. Every time there is any session activity, like a page request, the timers starts over. If the timer ever gets to 0, then the session times out. Jay Vertical Technology Group http://www.vtgroup.com/ -Original Message- From: Tim Funk

Re: session-timeout

2005-04-14 Thread Cédric Buschini
thank you !! Jay Burgess wrote: Think of the timeout as a 30 minute countdown timer. Every time there is any session activity, like a page request, the timers starts over. If the timer ever gets to 0, then the session times out. Jay Vertical Technology Group http://www.vtgroup.com/ -Original

Re: Tomcat memory alert

2005-04-14 Thread Ronaldo Arrudas
Hi carlos: I think a nice way is to deploy a simple TimerTask inside any webapp to do this work. You could use anything like the following to help you: import java.util.*; public class MemoryWatchDog extends TimerTask{ private static Timer currentTimer = null; public static void

Off-topic question: Does Hibernate have a mailing list?

2005-04-14 Thread Behrang Saeedzadeh
Hi all Does anyone know if Hibernate have a mailing list or not? The Hibernate's forum is very quiet... Best Regards, -- Behrang Saeedzadeh http://www.jroller.com/page/behrangsa - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: Off-topic question: Does Hibernate have a mailing list?

2005-04-14 Thread Guy Katz
try http://www.hibernate.org/20.html -Original Message- From: Behrang Saeedzadeh [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 7:01 PM To: Tomcat Users List Subject: Off-topic question: Does Hibernate have a mailing list? Hi all Does anyone know if Hibernate have a mailing

Re: Off-topic question: Does Hibernate have a mailing list?

2005-04-14 Thread Behrang Saeedzadeh
Thanks for the reply. But is the development mailing list for users of Hibernate or its CVS developers? Does it have a mailing list for users? Best Regards, Behi On 4/14/05, Guy Katz [EMAIL PROTECTED] wrote: try http://www.hibernate.org/20.html -Original Message- From: Behrang

Re: Off-topic question: Does Hibernate have a mailing list?

2005-04-14 Thread Christoph Kutzinski
Why is the forum quiet? I count more than 30 new posts today. Guy Katz wrote: try http://www.hibernate.org/20.html -Original Message- From: Behrang Saeedzadeh [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 7:01 PM To: Tomcat Users List Subject: Off-topic question: Does Hibernate

Re: ThreadPool logFull

2005-04-14 Thread Patty O'Reilly
I did the thread dump. Cool. There are 25 threads that look like this: http-8100-Processor13 daemon prio=1 tid=0x083c6090 nid=0x99a in Object.wait() [bcdff000..bcdff8d0] at java.lang.Object.wait(Native Method) - waiting on 0x33feebc0 (a

JULI and logging

2005-04-14 Thread Tran Hung-Phu-r50825
For tomcat 5.5.9. the default setting logs to both Catalina.out and Catalina.-mm-dd.log files My question are: 1) how to channel all startup messages to one file? 2) how to disable JULI (on by default)? thanks - To

Duplicate configuration file

2005-04-14 Thread Vy Ho
Please tell me if this is a bug in Tomcat. I just ran into this problem. It would help someone running into a same issue. I deploy a webapp with datasource configured through ROOT.xml (inside conf/Catalina/localhost/ROOT.xml). The data source was not found when I run the webapp. So, I check

graph.jsp exception non-j2sdk as JAVA_HOME

2005-04-14 Thread mel kravitz
Hi, On alpha arch- debian-unstable , 2.6.10 kernel, there is no j2sdk port to this arch, using sablevm.org java -version: SableVM version 1.11.3 - compile date and time: 2005-03-31 19:12:02 UTC - gcc version: 3.3.5 (Debian 1:3.3.5-8) - 'real life brokenness' features enabled - signal based

Redirect to https://

2005-04-14 Thread Darryl Wilburn
Where would I configure a context to automatically redirect to https? So when a user types http://host/application, it would automatically redirect them to https://host/application where a index.jsp may be a login form that I'd like to have the username and password encrypted. I assume it goes

finding context's jar file

2005-04-14 Thread Altu B. Altnta
I need to find which jar files are being used in one context, for example below code can give me some information about sun.boot.class.path html % String classpath = System.getProperty(sun.boot.class.path); out.println( + classpath); % /html Is there anything like that : html %

RE: Redirect to https://

2005-04-14 Thread Phillip Qin
Can you do it in apache httpd.conf? RewriteRule ^/host/application(.*) https://host/application [R] -Original Message- From: Darryl Wilburn [mailto:[EMAIL PROTECTED] Sent: April 14, 2005 4:00 PM To: tomcat-user@jakarta.apache.org Subject: Redirect to https:// Where would I configure a

RE: Redirect to https://

2005-04-14 Thread Lorenzo Jiménez
I have done that yesterday and it is pretty simple. Just look this web.xml: ?xml version=1.0 encoding=UTF-8? web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee

RE: Redirect to https://

2005-04-14 Thread Darryl Wilburn
Not using Apache as a front end. Straight Tomcat 5.5.7 with Coyote HTTP. Darryl __ Do you Yahoo!? Make Yahoo! your home page http://www.yahoo.com/r/hs - To unsubscribe,

Re: JULI and logging

2005-04-14 Thread Jonathan Eric Miller
I haven't tried it yet, but, I noticed that catalina.sh/bat, looks for a jar file named tomcat-juli.jar and if it's present, it adds a -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager to JAVA_OPTS. I think if you rename or remove that jar file, it will disable it (haven't

Re: Way to specify SingleSignOn session timeout?

2005-04-14 Thread Jonathan Eric Miller
After looking at the code, it looks like the SSO session doesn't go away until all other sessions for the user have expired. So, as far as I can tell, the SSO session doesn't have it's own session timeout as far as I can tell. Jon - Original Message - From: Jonathan Eric Miller [EMAIL

Re: Way to specify SingleSignOn session timeout?

2005-04-14 Thread Jonathan Eric Miller
After looking at the code, it looks like the SSO session doesn't go away until all other sessions for the user have expired. So, as far as I can tell, the SSO session doesn't have it's own session timeout as far as I can tell. Jon - Original Message - From: Jonathan Eric Miller [EMAIL

Re: JULI and logging

2005-04-14 Thread Remy Maucherat
On 4/14/05, Jonathan Eric Miller [EMAIL PROTECTED] wrote: What I did was change my common/classes/logging.properties file to the following. With this setup, everything goes into catalina.out. Note, I found that if JULI is enabled, it appears to ignore the java.util.logging.config.file property

Re: Way to specify SingleSignOn session timeout?

2005-04-14 Thread Remy Maucherat
On 4/14/05, Jonathan Eric Miller [EMAIL PROTECTED] wrote: After looking at the code, it looks like the SSO session doesn't go away until all other sessions for the user have expired. So, as far as I can tell, the SSO session doesn't have it's own session timeout as far as I can tell. Indeed.

RE: Apache Tomcat JK Mod

2005-04-14 Thread Geoff Wiggs
Yes - there is an index.jsp in the context /home/ (\\server\c\Apache\Tomcat\webapps\home) directory. Is there some way to tell how the rewrite is being processed? My rewrite log is blank. Geoff -Original Message- From: Phillip Qin [mailto:[EMAIL PROTECTED] Sent: Thursday, April

[ANNOUNCE] JSP 2.1 and Faces 1.2 Public Review

2005-04-14 Thread Jan Luehe
We are pleased to announce the availability of the Public Review of the next versions of the specification for JavaServer Pages (JSP) and JavaServer Faces (Faces). JSP 2.1 is developed under JSR-245 and Faces 1.2 is developed under JSR-252. The two expert groups are working ogether to improve

RE: apache + tomcat + JK connector configuration

2005-04-14 Thread Delphine Lê
I tried this, but it didn't help unfortunately Thank you Are you using load balance in your app? If not, you probably don't need this line: worker.worker1.lbfactor=50 Try to use this configuration in the server.xml Connector className=org.apache.ajp.tomcat4.Ajp13Connector

Re: clustering without loadbalancing

2005-04-14 Thread hang zhao
I am using mod_jk2, and in its workers2.properties file, you can specify level attribute for channel.socket quote from http://jakarta.apache.org/tomcat/connectors-doc-archive/jk2/jk2/configwebcom.html as description to level attribute: Worker Priority. Valid values are 0-3. The functioning

How do I Logout using JAAS

2005-04-14 Thread Scot Meyer
I have JAAS implemented and working properly. Except when I attempt to invalidate the session it keeps me logged in. Is this because of SSO? What do I need to do to Logout the user in question. Thanks Scotchy __ Do you Yahoo!? Yahoo! Small

Directory listing

2005-04-14 Thread dummy
How can I disable both the apache and tomcat 5.5 from displaying the directory of my web application ?

Re: Directory listing

2005-04-14 Thread Richard Reyes
What I do is put an access denied index.jsp on every subdirectories inside the specific webapp folder. heres my acc. deny index.jsp... html head titleAccess Denied/title /head bodyh1Access Denied/h1/body /html hth. richard On 4/15/05, dummy [EMAIL PROTECTED] wrote: How can I disable both