Tomcat 5 and SSL Configuration

2005-04-25 Thread Bruce Perryman
Hello, I'm using TC 5.0.19 and j2sdk1.4.2_04 on RedHat 9. My SSL certificate expired and I received a new one but haven't been able to get the new one to work. Here are the steps that I used to get the certificate and import it into my keystore: [1] keytool -genkey -alias tomcat -keyalg

Re: Tomcat 5 and SSL Configuration

2005-04-25 Thread Mark Thomas
Bruce, You should not have done step 5. This deleted your private key. I hope you have a backup ;) Mark Bruce Perryman wrote: Hello, I'm using TC 5.0.19 and j2sdk1.4.2_04 on RedHat 9. My SSL certificate expired and I received a new one but haven't been able to get the new one to work. Here are

Re: Tomcat 5 and SSL Configuration

2005-04-25 Thread Bruce Perryman
Thanks for responding! Yes, I do have a backup, but I should have mentioned that there were several attempts to get this working. One of the first attempts ommitted step #5, but I had the same result. I used step #5 in an attempt to remove the old and then insert the new. But that didn't work

Re: Tomcat 5 and SSL Configuration

2005-04-25 Thread Mark Thomas
The following steps should work (although I have only ever done this using my own CA). 1. Create tomcat key in your own keystore 2. Create CSR 3. Submit CSR 4. Get response 5. Import CA's root cert to cacerts (%JAVA_HOME%\jre\lib\security\cacerts) 6. Import new cert to same keystore as 1 (use

Tips regarding security and configuration

2005-04-21 Thread mbneto
hi, I have a fedora core 2 system with the standard tomcat/jakarta/mod_jk2 rpms installed. I am looking for tips regarding the configuration, specially with security and virtual hosting practices. regards. - To unsubscribe, e

RE: Tips regarding security and configuration

2005-04-21 Thread Fritz Schneider
and configuration hi, I have a fedora core 2 system with the standard tomcat/jakarta/mod_jk2 rpms installed. I am looking for tips regarding the configuration, specially with security and virtual hosting practices. regards

JDBCRealm Configuration

2005-04-21 Thread Jiang, Peiyun
I got the Exception when starting tomcat. What's wrong with it? Peiyun --- Realm className=org.apache.catalina.realm.JDBCRealm driverName=oracle.jdbc.driver.OracleDriver

RE: JDBCRealm Configuration

2005-04-21 Thread Raghupathy,Gurumoorthy
Put your classes.zip in tomcat\common\lib Regards Guru -Original Message- From: Jiang, Peiyun [mailto:[EMAIL PROTECTED] Sent: 21 April 2005 17:16 To: 'Tomcat Users List' Subject: JDBCRealm Configuration I got the Exception when starting tomcat. What's wrong with it? Peiyun

Re: Per Application JNDI/JDBC Configuration

2005-04-20 Thread David C. Hicks
Yep. This is basically the direction I was already headed. Once I deploy my application I do get the JNDI name in the list of DataSources (as viewed from the Administration tool), but the data source has no parameters. It almost looks as if Tomcat's loader is ignoring the ResourceParams

Per Application JNDI/JDBC Configuration

2005-04-19 Thread David C. Hicks
Hi, I'm trying to configure Tomcat5 with a JNDI resource for a JDBC connection that I would like to be specific to the application. In other words, I don't want to have to add anything to server.xml. I keep reading where this is possible, but haven't seen any clear examples of it. My

Re: Per Application JNDI/JDBC Configuration

2005-04-19 Thread Parsons Technical Services
For each app you have running you will need a context element in a xml file. This should reside in the war. In this file you can setup the resource which will be available only to that app. This will still give you pooling. If you follow the instructions on the Tomcat site for the JDBC How-To that

RE: apache + tomcat + JK connector configuration

2005-04-18 Thread Delphine Lê
message). And also, I can see that it automatically creates a mod_jk.conf file in $TOMCAT_HOME\conf\auto Regards -Original Message- From: Robert Harrison [mailto:[EMAIL PROTECTED] Sent: vendredi 15 avril 2005 19:52 To: Tomcat Users List Subject: Re: apache + tomcat + JK connector configuration

php tomcat solaris 9 configuration

2005-04-18 Thread Edwin Hernandez
Hi all!! I am lost and I need help! I have tomcat running in a Solaris 9 server and I need to be able to install and configure PHP and Mysql to run with tomcat. Is there a step by step document to do this? Thanks, Edwin - Do you Yahoo!?

php tomcat solaris 9 configuration

2005-04-18 Thread Edwin Hernandez
Hi all!! I am lost and I need help! I have tomcat running in a Solaris 9 server and I need to be able to install and configure PHP and Mysql to run with tomcat. Is there a step by step document to do this? Thanks, Edwin __ Do You Yahoo!?

Re: apache + tomcat + JK connector configuration

2005-04-15 Thread Robert Harrison
.lbfactor=50 Try to use this configuration in the server.xml Connector className=org.apache.ajp.tomcat4.Ajp13Connector port=6969 minProcessors=5 maxProcessors=75 enableLookups=false acceptCount=10 debug=0/ Hope this helps... -Original Message

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

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

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

apache + tomcat + JK connector configuration

2005-04-13 Thread Delphine Lê
. The configuration looks fine, since I can see in the following lines in mod_jk.log: [Wed Apr 13 18:49:13 2005] [debug] uri_worker_map_add::jk_uri_worker_map.c (269): exact rule /examples=worker1 was added [Wed Apr 13 18:49:13 2005] [debug] build_worker_map::jk_worker.c (219): creating worker

RE: apache + tomcat + JK connector configuration

2005-04-13 Thread Trung Nguyen
: apache + tomcat + JK connector configuration Hello, Has anyone had any success in configuring Apache (2.0.53) with Tomcat (4.1.29) in Windows XP, using a recent JK connector ? We have a server running with the JK2 connector and I'm trying to replace it with the latest JK connector (JK-1.2.10

RE: apache + tomcat + JK connector configuration

2005-04-13 Thread Delphine Lê
, April 13, 2005 2:01 PM To: tomcat-user@jakarta.apache.org Subject: apache + tomcat + JK connector configuration Hello, Has anyone had any success in configuring Apache (2.0.53) with Tomcat (4.1.29) in Windows XP, using a recent JK connector ? We have a server running with the JK2

Re: Virtual host configuration

2005-04-08 Thread Pete Stevens
On Thu, 7 Apr 2005, Darryl Wilburn wrote: Greetins all, New to Tomcat/Apache Implemented Tomcat 4.1.29 to support an application that required an application server. I'm migrating the application from an existing NT 4.0 system and would like to implement it as a virtual host on the

RE: tomcat ssl configuration

2005-04-07 Thread Mustafa BLKBA
No i created it with the user which i installed tomcat on the machine, does it make difference? -Original Message- From: James T. Studebaker [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 5:00 AM To: Tomcat Users List Subject: Re: tomcat ssl configuration Did you create

RE: SSL configuration question

2005-04-07 Thread Mustafa BLKBA
: Faine, Mark [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 7:34 PM To: 'Tomcat Users List' Subject: RE: SSL configuration question Nevermind, It is fixed. Unfortunately though I can't pass on my findings as I'm not sure exactly what fixed it. -Mark -Original Message- From

Virtual host configuration

2005-04-07 Thread Darryl Wilburn
Greetins all, New to Tomcat/Apache Implemented Tomcat 4.1.29 to support an application that required an application server. I'm migrating the application from an existing NT 4.0 system and would like to implement it as a virtual host on the Win2003 server running Tomcat. (Unfortunately,

RE: SSL configuration question

2005-04-05 Thread Faine, Mark
org.apache.catalina.startup.Catalina start INFO: Server startup in 14756 ms -Original Message- From: Faine, Mark Sent: Friday, April 01, 2005 9:25 AM To: 'Tomcat Users List' Subject: RE: SSL configuration question Thanks, the link you provided allowed me to get it imported correctly. This should go on a FAQ. Thanks

RE: SSL configuration question

2005-04-05 Thread Faine, Mark
Nevermind, It is fixed. Unfortunately though I can't pass on my findings as I'm not sure exactly what fixed it. -Mark -Original Message- From: Faine, Mark Sent: Tuesday, April 05, 2005 9:44 AM To: 'Tomcat Users List' Subject: RE: SSL configuration question I tried this same

tomcat ssl configuration

2005-04-04 Thread Mustafa BLKBA
I use tomcat 5.0.28 on linux, my j2se version is 1.4.02. I did all the steps in the document which is on this link but it's not working. Is there anybody who can help me with this issue? Thanx, Mustafa.

tomcat ssl configuration

2005-04-04 Thread Mustafa BLKBA
I use tomcat 5.0.28 on linux, my j2se version is 1.4.02. I did all the steps in the document which is on this link http://jakarta.apache.org/tomcat/tomcat-5.0-doc/ssl-howto.html but it's not working. Is there anybody who can help me with this issue? Thanx, Mustafa.

Re: tomcat ssl configuration

2005-04-04 Thread Anto Paul
On Apr 4, 2005 6:06 PM, Mustafa BLKBA [EMAIL PROTECTED] wrote: I use tomcat 5.0.28 on linux, my j2se version is 1.4.02. I did all the steps in the document which is on this link http://jakarta.apache.org/tomcat/tomcat-5.0-doc/ssl-howto.html but it's not working. Is there anybody who can

Re: tomcat ssl configuration

2005-04-04 Thread James T. Studebaker
Did you create the keystore while logged on as the root user? Thank you James T. Studebaker - Original Message - From: Mustafa BLKBA [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Monday, April 04, 2005 8:24 AM Subject: tomcat ssl configuration I use tomcat 5.0.28

ssl configuration on tomcat

2005-04-01 Thread Mustafa BLKBA
Hi, Is there anyone who can help me how to configure ssl on tomcat 5.0.28. my j2se version is 1.4.02. my keystore file type is JKS. I try to configure it reading the ssl configuration how-to document on this link. http://jakarta.apache.org/tomcat/tomcat-5.0-doc/ssl-howto.html I did all

Re: SSL configuration question

2005-04-01 Thread Mikhail Kruk
PM Subject: RE: SSL configuration question The certificate I imported was not self-signed (or should not be). It is what I received back from Entrust after submitting a CSR. It was already in use on Apache before I decided not to use Apache anymore. It worked before on Apache. I

RE: SSL configuration question

2005-04-01 Thread Faine, Mark
. Thanks, -Mark -Original Message- From: Mikhail Kruk [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 7:45 AM To: Tomcat Users List; Hein Behrens Subject: Re: SSL configuration question I thought the two are not related my key is stored in the java keystore. I did everything

RE: SSL configuration question

2005-04-01 Thread Faine, Mark
Thanks, the link you provided allowed me to get it imported correctly. This should go on a FAQ. Thanks again, -Mark -Original Message- From: Mikhail Kruk [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 3:42 PM To: Tomcat Users List Subject: RE: SSL configuration question

RE: SSL configuration question

2005-04-01 Thread Mikhail Kruk
To: Tomcat Users List; Hein Behrens Subject: Re: SSL configuration question I thought the two are not related my key is stored in the java keystore. I did everything with keytool, part of java. Tomcat only needs the password and name. The SSL certificate is not generated for or by tomcat

RE: SSL configuration question

2005-04-01 Thread Mikhail Kruk
, the link you provided allowed me to get it imported correctly. This should go on a FAQ. Thanks again, -Mark -Original Message- From: Mikhail Kruk [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 3:42 PM To: Tomcat Users List Subject: RE: SSL configuration question

RE: SSL configuration question

2005-04-01 Thread Faine, Mark
Kruk [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 9:31 AM To: Tomcat Users List Subject: RE: SSL configuration question Fortunately it's not that Frequent that people end up where you did :) You should first finalize your config and decide whether you will run Tomcat standalone

SSL configuration question

2005-03-31 Thread Faine, Mark
Solaris 8, Tomcat 5.0.28 I've configured my tomcat installation with my SSL key from Entrust and it is working (sort of). 1. It is not correctly configured. It shows my organization as both issued to and issue by when I view the certificate information. Could someone explain what I have

Re: SSL configuration question

2005-03-31 Thread Hein Behrens
@jakarta.apache.org Sent: Thursday, March 31, 2005 7:44 PM Subject: SSL configuration question Solaris 8, Tomcat 5.0.28 I've configured my tomcat installation with my SSL key from Entrust and it is working (sort of). 1. It is not correctly configured. It shows my organization as both issued

RE: SSL configuration question

2005-03-31 Thread Faine, Mark
Thanks, I tried that before and got a permission error, but it works now. -Mark -Original Message- From: Hein Behrens [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 12:41 PM To: Tomcat Users List Subject: Re: SSL configuration question Answer to number 2 is edit your

Re: SSL configuration question

2005-03-31 Thread Sasisekar S Sundaram
, Mark [EMAIL PROTECTED] To: 'Tomcat Users List' tomcat-user@jakarta.apache.org Sent: Thursday, March 31, 2005 1:13 PM Subject: RE: SSL configuration question Thanks, I tried that before and got a permission error, but it works now. -Mark -Original Message- From: Hein Behrens [mailto

Re: SSL configuration question

2005-03-31 Thread Nestor Florez
Message - From: Faine, Mark [EMAIL PROTECTED] To: 'Tomcat Users List' tomcat-user@jakarta.apache.org Sent: Thursday, March 31, 2005 1:13 PM Subject: RE: SSL configuration question Thanks, I tried that before and got a permission error, but it works now. -Mark -Original Message

RE: SSL configuration question

2005-03-31 Thread Faine, Mark
Tomcat. Thanks, -Mark -Original Message- From: Sasisekar S Sundaram [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 2:43 PM To: Tomcat Users List Subject: Re: SSL configuration question It shows both issued to and issue by because it is a self signed certificate. when you get

RE: SSL configuration question

2005-03-31 Thread Mikhail Kruk
it is. This might help: http://kb.thawte.com/thawte/thawte/esupport.asp?id=vs24694 Thanks, -Mark -Original Message- From: Sasisekar S Sundaram [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 2:43 PM To: Tomcat Users List Subject: Re: SSL configuration question It shows

Re: SSL configuration question

2005-03-31 Thread Hein Behrens
] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Thursday, March 31, 2005 11:42 PM Subject: RE: SSL configuration question The certificate I imported was not self-signed (or should not be). It is what I received back from Entrust after submitting a CSR. It was already in use on Apache

Configuration of https in tomcat failure

2005-03-16 Thread James T. Studebaker
I have tried over and over again to configure https for tomcat using the instructions found on the apache tomcat web site. I am unable to get https to work. I am running tomcat on a linux core 2 server, version 5.0.28 tomcat and version 1.4.2_05 jdk. I am lost. Help. Thank youJames T.

Re: Configuration of https in tomcat failure

2005-03-16 Thread joelsherriff
/FAQ_Tomcat_SOAP_SSL.html Now, if someone could help me get client authentication to work... - Original Message - From: James T. Studebaker To: tomcat-user@jakarta.apache.org Sent: Wednesday, March 16, 2005 8:37 PM Subject: Configuration of https in tomcat failure I have tried

RE: Configuration of https in tomcat failure

2005-03-16 Thread Caldarale, Charles R
From: James T. Studebaker [mailto:[EMAIL PROTECTED] Subject: Configuration of https in tomcat failure I have tried over and over again to configure https for tomcat using the instructions found on the apache tomcat web site. I am unable to get https to work. You need to be more specific

Re: Configuration of https in tomcat failure

2005-03-16 Thread James T. Studebaker
, Charles R [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Thursday, March 17, 2005 12:00 AM Subject: RE: Configuration of https in tomcat failure From: James T. Studebaker [mailto:[EMAIL PROTECTED] Subject: Configuration of https in tomcat failure I have tried over

Re: Configuration Problem in Tomcat for HTTPS

2005-03-15 Thread suryadevara dushyanth
Sanjeev, How can i set the path for the keystore in server.xml? --- Sanjeev Srivastava [EMAIL PROTECTED] wrote: Hi Dushyanth, Have you created server.keystore, also are you specifing the right path in server.xml for the server.keystore. Check this, your problem will be solved. In

Re: Configuration Problem in Tomcat for HTTPS

2005-03-15 Thread Sanjeev Srivastava
Dushyanth! Have you created server.keystore using keytool..? In server.xml check the code below and provide the path to KeystoreFile and put the password. keystoreFile=/cm/de/cfg/server.keystore keystorePass=changeit Make sure the 443 or 8443 should be same in port 80 and port

Re: Configuration Problem in Tomcat for HTTPS

2005-03-14 Thread suryadevara dushyanth
I have modified the server.xml and removed the comments for ssl connector on port 8443. I generated a self signed certificate in the path of java_home. This is the procedure given in http://jakarta.apache.org/tomcat/tomcat-5.5-doc/ssl-howto.html. After modifying the server.xml for testing I typed

Re: Configuration Problem in Tomcat for HTTPS

2005-03-14 Thread Antony Paul
If you followed instruction in the tomcat docs the key will be stored in the users home directory. In windows it will be in c:\documents and settings\username\.keystore . By default Tomcat looks at this location for the key. Are you getting any error in logs ?. On Mon, 14 Mar 2005 05:09:27

Re: Configuration Problem in Tomcat for HTTPS

2005-03-14 Thread suryadevara dushyanth
No I am not getting any errors in logs. --- Antony Paul [EMAIL PROTECTED] wrote: If you followed instruction in the tomcat docs the key will be stored in the users home directory. In windows it will be in c:\documents and settings\username\.keystore . By default Tomcat looks at this

Re: Configuration Problem in Tomcat for HTTPS

2005-03-14 Thread Jason Bainbridge
On Mon, 14 Mar 2005 12:04:55 -0800 (PST), suryadevara dushyanth [EMAIL PROTECTED] wrote: No I am not getting any errors in logs. Where exactly is your .keystore? You are best putting it somewhere simple and then referencing it with the parameter keystoreFile in the connector for the SSL. As a

Re: Configuration Problem in Tomcat for HTTPS

2005-03-14 Thread Sanjeev Srivastava
Hi Dushyanth, Have you created server.keystore, also are you specifing the right path in server.xml for the server.keystore. Check this, your problem will be solved. In case of any problem, do let me know... Cheers!, Sanjeev --- suryadevara dushyanth [EMAIL PROTECTED] wrote: No I am not

JK2 URI configuration

2005-03-14 Thread Ian Franco
I can't figure out, or find any documentation on how to map a uri in workers2.properties to something other than its webapp directory name. For instance, I want to make the directory $CATALINA_BASE/webapps/mywebappv2.0.23 respond as though it were $CATALINA_BASE/webapps/mywebapp. I'm certain

Configuration Problem in Tomcat for HTTPS

2005-03-13 Thread suryadevara dushyanth
Hi, I am trying to configure my Tomcat with https support. I tried in two versions of tomcat. Tomcat 5 I followed the process as given by the documentation but https is not working as i typed in the url https://localhost:8443; I am getting page not available. Tomcat 4.1.29 I followed the

Re: Configuration Problem in Tomcat for HTTPS

2005-03-13 Thread Bill Barker
Urm, not really enough info here to help you. Of course I'm assuming that you've already read http://jakarta.apache.org/tomcat/tomcat-5.5-doc/ssl-howto.html. Beyond that, you can try setting your logging category (log4j/java.util.logging config) for 'org.apache.tomcat.net.jsse' to DEBUG to

How to change the default log4j configuration for Tomcat 5.0x?

2005-03-07 Thread SEAN CHEN
hi, does anybody know how to change the default log4j configuration for tomcat 5.0x? the default logging level is info, I want to change to debug? Thanks in advance. Sean - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Equivalent of Resin run-at servlet configuration

2005-03-04 Thread Lionel Farbos
[EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Thursday, March 03, 2005 8:51 PM Subject: Re: Equivalent of Resin run-at servlet configuration run-at is an extension to web.xml that is not portable across containers. That's why it will not be implemented

Re: Equivalent of Resin run-at servlet configuration

2005-03-04 Thread Tim Funk
yup -Tim Parsons Technical Services wrote: And so the best way is to have a set of classes to add to your project that add this feature. It then moves with the app and can be applied per app or even as a jar in common lib for use by all apps. Tim, am I thinking right on this?

Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Subramanya Sastry
Hello, I am developing a Java web application, and one of the requirements is to run a particular servlet periodically, or even at specified times. Resin provides this ability via its run-at configuration element for servlets in web.xml Example Resin configuration: servlet servlet

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Antony Paul
of the requirements is to run a particular servlet periodically, or even at specified times. Resin provides this ability via its run-at configuration element for servlets in web.xml Example Resin configuration: servlet servlet-namedownload/servlet-name servlet

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread QM
: I am developing a Java web application, and one of the requirements is to run : a particular servlet periodically, or even at specified times. Resin provides : this ability via its run-at configuration element for servlets in web.xml Tomcat doesn't have this. Are you trying to run

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Nikola Milutinovic
Subramanya Sastry wrote: Hello, I am developing a Java web application, and one of the requirements is to run a particular servlet periodically, or even at specified times. Resin provides this ability via its run-at configuration element for servlets in web.xml Example Resin configuration

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Parsons Technical Services
Milutinovic [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Thursday, March 03, 2005 6:55 AM Subject: Re: Equivalent of Resin run-at servlet configuration Subramanya Sastry wrote: Hello, I am developing a Java web application, and one of the requirements is to run

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread David Smith
: Thursday, March 03, 2005 6:55 AM Subject: Re: Equivalent of Resin run-at servlet configuration Subramanya Sastry wrote: Hello, I am developing a Java web application, and one of the requirements is to run a particular servlet periodically, or even at specified times. Resin provides this ability

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Lionel Farbos
it for use in apps that need such a device. Thanks Doug - Original Message - From: Nikola Milutinovic [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Thursday, March 03, 2005 6:55 AM Subject: Re: Equivalent of Resin run-at servlet configuration

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Jonathan Wilson
PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Thursday, March 03, 2005 6:55 AM Subject: Re: Equivalent of Resin run-at servlet configuration Subramanya Sastry wrote: Hello, I am developing a Java web application, and one of the requirements is to run a particular

RE: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Aris Javier
List Subject: Re: Equivalent of Resin run-at servlet configuration I think the Cocoon project has such a facility. I'm not sure how complicated it would be to pull out that functionality, but their work might be worth looking at for this. --David Parsons Technical Services wrote: With all

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Tim Funk
: Thursday, March 03, 2005 9:34 PM To: Tomcat Users List Subject: Re: Equivalent of Resin run-at servlet configuration I think the Cocoon project has such a facility. I'm not sure how complicated it would be to pull out that functionality, but their work might be worth looking at for this. --David

RE: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Aris Javier
:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 9:42 AM To: Tomcat Users List Subject: Re: Equivalent of Resin run-at servlet configuration no. (unless the spec says so) -Tim Aris Javier wrote: If this is not supported in Tomcat, is there a way or a plan to have this kind of service? This would

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Tim Funk
really don't understand the specs. I was just thinking in a layman's way. Thanks Aris -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 9:42 AM To: Tomcat Users List Subject: Re: Equivalent of Resin run-at servlet configuration no. (unless the spec

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Parsons Technical Services
, 2005 8:51 PM Subject: Re: Equivalent of Resin run-at servlet configuration run-at is an extension to web.xml that is not portable across containers. That's why it will not be implemented. -Tim Aris Javier wrote: No, meaning impossible? cause if it would be very beneficial to many then why

realm configuration

2005-03-02 Thread Nathan Coast
Hi, I have the following db structure for my user / role tables: User User-Role Role -- --- -- id -- user_id usernamerold_id --- id passwordrolename Is there a realm implementation that support

Re: realm configuration

2005-03-02 Thread Tim Funk
Use a view -Tim Nathan Coast wrote: Hi, I have the following db structure for my user / role tables: User User-Role Role -- --- -- id -- user_id usernamerold_id --- id passwordrolename Is there a

RE: realm configuration

2005-03-02 Thread Mark Benussi
, ROLE_NAME Unfortunately looks like I may have to update my version of mysql to 5.??? -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: 02 March 2005 11:24 To: Tomcat Users List Subject: Re: realm configuration Use a view -Tim Nathan Coast wrote: Hi, I have the following

Re: realm configuration

2005-03-02 Thread Tim Funk
AND ROLES.DATA_KEY = RLTNS.SECONDARY_KEY ORDER BY USER_NAME, ROLE_NAME Unfortunately looks like I may have to update my version of mysql to 5.??? -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: 02 March 2005 11:24 To: Tomcat Users List Subject: Re: realm configuration Use a view -Tim

RE: realm configuration

2005-03-02 Thread Mark Benussi
That sql isn't mysql specific. Should work for you fine. -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: 02 March 2005 12:33 To: Tomcat Users List Subject: Re: realm configuration I guess (I don't use mysql) -Tim Mark Benussi wrote: Just done this this morning

Tomcat runtime configuration changes

2005-03-02 Thread Christian Heldwein
a service from the config, and force tomcat to reread the configuration - not with the admin application, but by e.g. a command line interface or by writing our own application and using some API? (which one?) Btw, are there any docs available for the admin application? 2. Can we stop and start web

Re: realm configuration

2005-03-02 Thread Nathan Coast
thanks for your suggestions, I started to dig around in the code, and also looked at a jaas login module from jboss. the jboss solution is to have a login module that takes two parameters (queries) 1) to return credentials for a username 2) to return the rolenames for a username this is

Configuration

2005-02-28 Thread Hernan Pezzano
Hi, I can´t instance a servlet from a jsp. I have the servlet under web-inf folder, and de jsp as same as web-inf level. I call to servlet with ACTION=ServletInfo after I press the SUBMIT button inside de jsp. it´s ok isn´t it? The result of the browser when I press SUBMIT is the page cannot

Re: Configuration

2005-02-28 Thread sven morales
Hi, Yeah servlet classes do get put under yourwebapp/WEB-INF/classes or yourwebapp/WEB-INF/lib if it has been archived (jar). If you need to reference jsp hidden under yourwebapp/WEB-INF/ you need to make references to its path to get to it, modify your mapping in struts-config.xml. I always

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-22 Thread Tony
The virus known as Norton Anti. (Sorry, couldn't resit;) -Original Message- From: raghavendra datt [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 22, 2005 12:04 AM To: Tomcat Users List Subject: RE: Facing problems in tomcat configuration - on XP Professional Sorry guys.. I got

Configuration for best performance in a high latency environment

2005-02-22 Thread Jason Bainbridge
find anything within Tomcat's configuration that would be governing that as they suggest if the packets were larger then the performance over high latency would increase, does anyone have any ideas on that? The only time the packets are greater than 590 bytes is when the browser sends it's request

Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread raghavendra datt
Hi all, I am new to this mailing list. for the past one week i was trying to run tomcat on my XP Professional OS but in vein. I downloaded the latest JDK and downloaded tomcat 4.1 version and has set the CATALINA_HOME and JAVA_HOME respectively. when I start the server its getting started

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Peter Crowther
From: raghavendra datt [mailto:[EMAIL PROTECTED] I am new to this mailing list. for the past one week i was trying to run tomcat on my XP Professional OS but in vein. I downloaded the latest JDK and downloaded tomcat 4.1 version and has set the CATALINA_HOME and JAVA_HOME

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread raghavendra datt
Yeah.. both machines are on service pack 2.. and I dont see any firewall in XP Pro machine. Can you please tell me how to figure out whether firewall is running or not? Do you think changing port would solve the problem.. Thanks for the instant reply, Raghavendra --- Peter Crowther [EMAIL

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Tony
: Facing problems in tomcat configuration - on XP Professional Hi all, I am new to this mailing list. for the past one week i was trying to run tomcat on my XP Professional OS but in vein. I downloaded the latest JDK and downloaded tomcat 4.1 version and has set the CATALINA_HOME and JAVA_HOME

Re: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Hassan Schroeder
raghavendra datt wrote: Can you please tell me how to figure out whether firewall is running or not? To check whether that port is being blocked: C:\telnet localhost 8080 You'll see either tomcat responding or something (firewall, or ...) preventing access :-) HTH! -- Hassan Schroeder

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Tony
be something like Switch to classic view that shows everything not just a selected few. Good Luck! -Original Message- From: raghavendra datt [mailto:[EMAIL PROTECTED] Sent: Monday, February 21, 2005 1:44 PM To: Tomcat Users List Subject: RE: Facing problems in tomcat configuration

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread raghavendra datt
not just a selected few. Good Luck! -Original Message- From: raghavendra datt [mailto:[EMAIL PROTECTED] Sent: Monday, February 21, 2005 1:44 PM To: Tomcat Users List Subject: RE: Facing problems in tomcat configuration - on XP Professional Yeah.. both machines

Re: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Jason Bainbridge
On Mon, 21 Feb 2005 19:21:54 -0800 (PST), raghavendra datt [EMAIL PROTECTED] wrote: I verified. No fire wall is enabled in my machine. also I tried changing port to something else (8789) and still am getting the page can not be diplayed error. I dont understand what is preventing from

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Tony
: raghavendra datt [mailto:[EMAIL PROTECTED] Sent: Monday, February 21, 2005 9:22 PM To: Tomcat Users List Subject: RE: Facing problems in tomcat configuration - on XP Professional I verified. No fire wall is enabled in my machine. also I tried changing port to something else (8789) and still am

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread raghavendra datt
, 2005 9:22 PM To: Tomcat Users List Subject: RE: Facing problems in tomcat configuration - on XP Professional I verified. No fire wall is enabled in my machine. also I tried changing port to something else (8789) and still am getting the page can not be diplayed error. I dont understand

Oracle 9i JDBC configuration with Tomcat 5.5.7 - who is right?

2005-02-17 Thread Edmon Begoli
Tomcat authors and users, Need somebody's definitive word on this: I am trying to configure JNDI resource in tomcat 5.5.7 for Oracle 9i (either ojdbc14 or classes12). I have book Professional Tomcat 5 that instructs me to put Resource and ResourceProperties inside the Global context or the

Re: Oracle 9i JDBC configuration with Tomcat 5.5.7 - who is right?

2005-02-17 Thread Parsons Technical Services
Just a user, but from the threads on the list and the docs, what is correct is. Both! The book is in reference to the 5.0.x path and the 5.5.x path is different. So, since you are running 5.5.7 follow the how to on the web for the element configuration. Otherwise the data is the same. Now

RE : RE : RE : RE : RE : RE : Tomcat configuration

2005-02-16 Thread LERBSCHER Jean-Pierre
Hi, I'm not sure but you could try to rename the ldsecure.xml file in context.xml. -Message d'origine- De : Curtis Nelson [mailto:[EMAIL PROTECTED] Envoyé : mardi 15 février 2005 18:51 À : tomcat-user@jakarta.apache.org Objet : Re: RE : RE : RE : RE : RE : Tomcat configuration I know

<    1   2   3   4   5   6   7   8   9   10   >