RE: Silent install of tomcat 4.1.31 on windows fails

2006-08-04 Thread ehawkes
Hi Mark, Thanks for the link. There was one more piece to this: tomcat.exe was not in tomcat/bin/ so I had our installer put a copy there. After that, the uninstall works fine. Thanks again for your help, Eric -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Se

Re: How do I direct all http requests to Https

2006-08-04 Thread William Chu
Thank you for the help, but I still don't quite understand. What is SVN? Are these modified versions of tomcat? I have been doing some digging. This is what I gather In order to get redirected to the https url from the http url: I need to modify the server.xml to include the redirectPort in t

Can't start new install of TOMCAT

2006-08-04 Thread Rob Tanner
Hi, I installed Tomcat 4.1.32 on my new development box, and copied the 4.1.31 server.xml file over from my old development system. But I can't get tomcat to start. The error is: LifecycleException: Coyote connector has not been started. I'm using j2sdk1.4.2_12 is that makes any differenc

Problem compiling mod_jk 1.2.18 with Apache 1.3.27

2006-08-04 Thread fredk2
Hi: I can succesfully compile mod_jk 1.2.18 against Apache 2.2.2 (configure --with-apxs and make), but when I compile against 1.3.27 and try to start apache I get the following error: Solaris 8: Syntax error on line 8 of /test/site/conf/apache-tomcat_jk.conf: Cannot load /test/apache_modules/mo

RE: How do I direct all http requests to Https

2006-08-04 Thread Bill Barker
You need to check out the code as in and build Tomcat yourself. The CoyoteConnector has a new redirectPort option that works like in TC 4.x+. > -Original Message- > From: William Chu [mailto:[EMAIL PROTECTED] > Sent: Friday, August 04, 2006 3:59 PM >

Re: How do I direct all http requests to Https

2006-08-04 Thread William Chu
Thank you Bill, I am using 3.3.1 . What is the SVN trunk? And how do I do this? Thank you Will On 8/4/06, Bill Barker <[EMAIL PROTECTED]> wrote: With the TC 3.3 line, the auto-redirect is only implemented in the SVN trunk. > -Original Message- > From: William Chu [mailto:[EMAIL PROTE

Re: application specific log4j configuration

2006-08-04 Thread fredk2
Hi Jan, I believe you can put the log4j.properties into the /WEB-INF/classes and the log4j-.jar and commons-logging.jar into the related WEB-INF/lib see http://tomcat.apache.org/tomcat-5.5-doc/logging.html I tested with the following sample properties for test = DEBUG will generate lot of log

RE: How do I direct all http requests to Https

2006-08-04 Thread Bill Barker
With the TC 3.3 line, the auto-redirect is only implemented in the SVN trunk. > -Original Message- > From: William Chu [mailto:[EMAIL PROTECTED] > Sent: Friday, August 04, 2006 1:08 PM > To: Tomcat Users List; [EMAIL PROTECTED] > Subject: Re: How do I direct all http requests to Https >

RE: How to do the precompilation on jsp

2006-08-04 Thread Subir Sengupta
Use the jspc.sh script to precompile your jsp's. -Original Message- From: Sameer Acharya [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 3:43 AM To: Tomcat Users List Subject: Re: How to do the precompilation on jsp My understanding is that you need to pre-compile jsp's from yo

Re: place to put taglib descriptors

2006-08-04 Thread Lung Chan
Hi, I know that if you use tag librairie version 2, you don't need any configuration tag have you check that out? It's a tag that don't need to be compile, it's in a jspf or jspx extension file or something like that. It's like coding jsp, but you are building tags. I try to find something for

application specific log4j configuration

2006-08-04 Thread Jan Zach
Hi, is there any possibility to customize log4j settings for particular application, e.g. in META-INF/context.xml or similar rather than in global settings common/classes/log4j.properties? I'd like to deploy an application and force it to log into its own file. Thanks Regards jan

java.io.IOException: Stream closed

2006-08-04 Thread Mihail Degteariov
Greetings, We had a following problem today -- the system we develop started to throw the IOException (please see below) after several hours of being up and running. Prior to the first occurrence, the application did not show any signs of instability, but after the first occurence it became absolu

Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
I think I found a promising lead to what is going wrong here. The FABLE application is reading as if the CLASSPATH is set to ~/cvs/fable/web/info/ instead of /usr/local/tomcat/ webapps/fable(_[user])/WEB_INF/classes/info. I found this out by doing the following: 1. make install_dev. 2. rm /

Re: How do I direct all http requests to Https

2006-08-04 Thread Filip Hanik - Dev Lists
something like Automatic SSL Forwarding * --> CONFIDENTIAL but you might have to hit the docs Filip William Chu wrote: Hi Filip, Thank you for the help. Much appreciated. However, when I add the secur

Re: How do I direct all http requests to Https

2006-08-04 Thread William Chu
Hi Filip, Thank you for the help. Much appreciated. However, when I add the security constraint to my web.xml, I do not get redirected to the https url. I get the http url. Any ideas? Thank you, Will CONFIDENTIAL On 8/4/06,

Re: How do I direct all http requests to Https

2006-08-04 Thread Filip Hanik - Dev Lists
what? the reference to weblogic is not to the weblogic server, simply to their excellent documentation of the standard web.xml file. you don't need more than one web.xml file, all you need to do is set the element correctly, and tomcat will automatically redirect all HTTP to HTTPS for you. t

Re: how to use jsvc to stop the tomcat service

2006-08-04 Thread Patrick Wang
Warren: Thanks for the help. I tried to run the command line /bin/jsvc \ * -stop It said -stop is not a recognized option. I listed the jsvc -help and did not see such an option for the jsvc command. I will do more investigation. Pat -Original

Re: How do I direct all http requests to Https

2006-08-04 Thread MC Moisei
Is there a why to set you my context to use a different web.xml file ? I use tomcat to speedup my Weblogic developement and that would require to have two web.xml files. Is there a way to set the context to user for example web_tomcat.xml file instead ? I work in exploded format. Thanks, MC

Re: How do I direct all http requests to Https

2006-08-04 Thread Filip Hanik - Dev Lists
I just responded to this yesterday, web.xml for your web-application http://e-docs.bea.com/wls/docs61/webapp/web_xml.html#1019727 user-data-constraint & CONFIDENTIAL Filip William Chu wrote: How do I direct a user to the https url when they use the http url? i.e. http:// is directed to http

Re: How do I direct all http requests to Https

2006-08-04 Thread Gregor Schneider
Take a look at this: http://support.borland.com/entry.jspa?externalID=2592&categoryID=121 Cheers Greg -- what's puzzlin' you, is the nature of my game

Tomcat 5.0.28 and catching j_security_check

2006-08-04 Thread Gregor Schneider
Hi guys, I'm having some really sever headache here. This is what I'd like to do: On front we have an Apache 2.0.49 HHTP-server connected to Tomcat 5.0.28 via mod_jk. Now we'd like to create a SSO (Singgle-Sign-On) module, which does some freaky stuff for both Apache HTTP and Tomcat. However, I

How do I direct all http requests to Https

2006-08-04 Thread William Chu
How do I direct a user to the https url when they use the http url? i.e. http:// is directed to https:// - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
Unfortunately, the startup script doesn't set the classpath and the classes are not in the shared folders. Any other ideas? I am currently digging.. Thanks again, Ryan On Aug 4, 2006, at 12:47 PM, Filip Hanik - Dev Lists wrote: could be several reasons, one common one is that somewhere i

Re: place to put taglib descriptors

2006-08-04 Thread Marten Lehmann
Hi, You could place them in the META-INF of the jar files they go with. Otherwise, no auto-configure locations that I know of. What's the problem with configuring them in web.xml? it just clutters up the configuration, so for me it is more a cosmetical than a technical issue. Regards Mar

Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Filip Hanik - Dev Lists
could be several reasons, one common one is that somewhere in your restart script, you are setting the classpath manually to include the classes. another would be that your classes are in shared/classes or shared/lib if not, you'd need to dig deeper. Ryan O'Hara wrote: Currently, we have a few

Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
Currently, we have a few three development instances of the "same" application being run - webapps/A, webapps/B, and webapps/C. By same I mean the same application, although each instance is usually a bit different, as the developers work on their individual instance. The problem we are f

Re: Tomcat SSL question

2006-08-04 Thread David Miller
Thanks Filip, It's now working as I thought it should. I did what you said as well as manually configuring a worker and adding said worker to a virtual host for port 443. Oh and special thanks to Li. David On 8/4/06, Filip Hanik - Dev Lists <[EMAIL PROTECTED]> wrote: set "redirectPort" on y

RE: how to use jsvc to stop the tomcat service

2006-08-04 Thread Patrick Wang
Mark: Thanks for letting me know, I will take note and will start a new thread then. I appreciated all the great help I received here. Pat -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 4:45 PM To: Tomcat Users List Subject: Re: how to us

SOLVED: >>Tomcat 4<<: org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-08-04 Thread Roy Kiesler
the docBase attribute of the element in server.xml must point to the fully qualified path of the web app from which you will be referencing this data source. An incorrect path will result in the SQL exception in the subject. Case closed. On 8/3/06, Roy Kiesler <[EMAIL PROTECTED]> wrote: I hav

Re: Tomcat SSL question

2006-08-04 Thread Filip Hanik - Dev Lists
set "redirectPort" on your AJP(port 8009) connector to 443 http://tomcat.apache.org/tomcat-5.5-doc/config/ajp.html using mod_jk, you will not use port 8080 and 8443, only 8009. Filip David Miller wrote: I can't do that because the web server uses those ports. Perhaps someone can just verify

Re: steps multiple instances of tomcat

2006-08-04 Thread Filip Hanik - Dev Lists
if you don't install it as a service, it is as easy on windows as on linux, there is no requirement for it to run as a service. but if you want the simple way of creating two tomcats running as services, don't use the tomcat provided wrapper, use: http://people.apache.org/~fhanik/wrapper.html

RE: steps multiple instances of tomcat

2006-08-04 Thread Thomas.Vaughan
It depends on the environment you're running on... In my experience, it is easier to get multiple Tomcat instances running on Linux than it is on Windows. For Linux, I just gzuniped the Tomcat installation package twice; once in /usr/local/tomcat_01 and again in /usr/local/tomcat_02. I modified

steps multiple instances of tomcat

2006-08-04 Thread Pratap Parne
how to setup and deploy applications on multiple instances of tomcat on a single box.can anyone give me the steps to do that.plz make it clear.ow to run application using any particular tomcat __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the b

Re: place to put taglib descriptors

2006-08-04 Thread David Smith
You could place them in the META-INF of the jar files they go with. Otherwise, no auto-configure locations that I know of. What's the problem with configuring them in web.xml? --David Marten Lehmann wrote: Hello, They can be in let's say WEB-INF/tlds and then added to web.xml in a tag,

Re: place to put taglib descriptors

2006-08-04 Thread Marten Lehmann
Hello, They can be in let's say WEB-INF/tlds and then added to web.xml in a tag, one per tag. but that's exactly what I don't want to do: Explicitly mention each single taglib descriptor in web.xml. Isn't there a way to put them all in a certain directory that is different to WEB-INF/lib?

Teste de envio arquivos .doc

2006-08-04 Thread Juba
- Mensagem verificada pelo software de Anti-Virus McAfee. FAMERP - STI - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTE

Can you define Environment settings on a per-Service basis?

2006-08-04 Thread Thomas.Vaughan
Hi, I'm running tomcat 5.5 on a windows box and I'm wondering if I can do the following... I have 2 separate Services configured in my server.xml, one to support development and one to support pre-production: Service Name Port Webapps Dir --- Catalin

Re: Tomcat 5.5 and IPv6 configuration

2006-08-04 Thread Markus Schönhaber
Your first two questions are in no way Tomcat-specific. Anyway... Ipv6Tomcat wrote: > yes,I had installed tomcat 5.0.28 simply in my machine(xp sp2) > ,because my computer has deployed ipv4 and ipv6 address, when i install > tomcat successfully, I just put the "http://localhost:8080"; to webb

Re: cpu 100% java

2006-08-04 Thread Mike Davis
On Tue, 1 Aug 2006 17:28:13 -0400 Benjamin Adams <[EMAIL PROTECTED]> wrote: > I'm on OS X 10.4.7 running with weblog software (blojsom) > I have to do a kill -9 on java to stop it from using 100+ on cpu > sometimes, to let users connect. > I find that a very similar problem occurs quite consisi

Re: Unable to compile the Jsp in Tomcat

2006-08-04 Thread devteam_matsys
Yes your right, when the second hit its works fine. On the first hit the jsp is not compiling properly. Is there any other solution for this. -- View this message in context: http://www.nabble.com/Unable-to-compile-the-Jsp-in-Tomcat-tf2043765.html#a5647144 Sent from the Tomcat - User forum at

Re: Pointing domain to your application

2006-08-04 Thread Gamefaqs Philippines
H... mod_jk seems to be working really better now. I could see the access log defined in my element under element. However, when I invoke the URL of the domain, www.domain1.com I'm still being pointed to directory tree and not the application. The first suggestion of making an index rediec

Re: Tomcat 5.5 and IPv6 configuration

2006-08-04 Thread Ipv6Tomcat
Markus Schönhaber wrote: > > I'd suggest that you simply install Tomcat. If you encounter a specific > problem, ask about it here. > hi, mks: Thank you for you reply so quickly. yes,I had installed tomcat 5.0.28 simply in my machine(xp sp2) ,because my computer has deployed ipv4 and ipv

Cannot remove module mod_jk.c: not found in module list

2006-08-04 Thread Gamefaqs Philippines
Hi guys, I'm having this error... Apache runs ok, but jk won't seem to load... Or maybe it loads but I think there's something wrong... Here's my LoadModule entry... LoadModule jk_module modules/mod_jk.so Please help... Thanks! - Talk is cheap