RE: https from client to web server, http from web server proxy to tomcat,

2005-09-27 Thread Wick, Daniel
LB, We currently use SSL at the Sun One Web Server front end, then standard http from the proxy connection to tomcat. I believe you should have this type of setup: Client -https-Sun WS -http-Tomcat (proxy) Client -https-Sun WS -http-Tomcat (reverse proxy) The application has 5

RE: SSL 8443

2005-09-15 Thread Wick, Daniel
If you use port 443, you won't be required to specify the port in the browser. The browser will auto-request on 443 because you've specified ssl. If you don't want ssl, use port 80. --Dan -Original Message- From: Lalit Batra [mailto:[EMAIL PROTECTED] Sent: Thursday, September 15,

RE: Different Authentication Requirements Based On Connector, Por t or Protocol?

2005-05-25 Thread Wick, Daniel
You might think about using Apache HTTP server to proxy (mod_proxy) the external traffic back to your tomcat instance on ports 80 (80 -8080) 443 (443-8443). I've run into situations where ports other than the standard 80 443 are blocked by corporate firewalls. You might be able to use apache

RE: Apache locks up

2004-12-09 Thread Wick, Daniel
Reboot your windows machine switch to Linux, BSD, or commercial unix.hee hee hee! Seriously though, what's in the error log? -Original Message- From: Dola Woolfe [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 11:05 AM To: Tomcat Users List Subject: Re: Apache locks up

RE: Apache locks up

2004-12-09 Thread Wick, Daniel
Whoops! Sorry Dola, I accused you of using Apache on windows. I sincerely apoligize! -Original Message- From: Dola Woolfe [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 11:12 AM To: Tomcat Users List Subject: RE: Apache locks up This was a reply to a previous thread. I

RE: HP-UX misbehaving AGAIN

2004-12-06 Thread Wick, Daniel
Wendy, There are also a number of HP recommended tunes you can do the kernal of HP-UX to improve performance for tomcat apache httpd - provided you have a busy system. Some easy ones are: maxuprc default=75, recommend 3500 nproc default=(20+8*MAXUSERS), recommend (20+32*MAXUSERS)

RE: Where do I get mod_jk

2004-12-03 Thread Wick, Daniel
Where are you reading about a configure script? Maybe you're seeing the compiling information. As in: ./configure ./make ./make install Also, I would highly recommend using the proxy pass, proxy pass reverse method of connecting to Tomcat. It works well. --Dan -Original Message-

RE: Tomcat and Servlets - DESPERATE for help

2004-11-24 Thread Wick, Daniel
Mike, What is your question? We are happy to help, but need some detail. --Dan -Original Message- From: Michael McQuade [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 9:31 AM To: Tomcat Users List Subject: Tomcat and Servlets - DESPERATE for help Hi folks, I

JAVA_OPTS for multiple apps running under 1 tomcat

2004-11-19 Thread Wick, Daniel
Hi! I have 3 virtual hosts in tomcat, each with it's own java app/context (total of 3 apps). When I set JAVA_OPTS=-Xmx 512m, in the bin/setenv.sh on UNIX, does this max out 512m for each context, or does it set it for everthing that runs under tomcat? --Dan

RE: JAVA_OPTS for multiple apps running under 1 tomcat

2004-11-19 Thread Wick, Daniel
I guess I could have deduced that from seeing only 1 java process...but I'm happy to have the validation of the group! Many thanks! -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Friday, November 19, 2004 10:35 AM To: [EMAIL PROTECTED] Subject: Re:

RE: Tomcat JRE vs JDK Issue

2004-11-16 Thread Wick, Daniel
Chris, JSP pages get compiled into bytecode (as Yoav just said) as they are requested. So, the server requires the SDK, including javac to do the compiling. --Dan -Original Message- From: Hubble, Christopher [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 16, 2004 9:20 AM To:

RE: JAVA_OPTS

2004-11-15 Thread Wick, Daniel
Hi. I understand why you would set a max amount of memory that Java will use (-Xmx 512m), but why do you set a minimum (-Xms128m)? Doesn't it just use what it needs until it hits the max? --Dan -Original Message- From: Shankar Unni [mailto:[EMAIL PROTECTED] Sent: Monday, November 15,

Binding Address Problem

2004-11-02 Thread Wick, Daniel
I have a similar problem. I have two Tomcat instances installed on the same server. I want them each to bind to a specific IP address and use port 8080. See config snippets below. Even though I specify an address, they clobber each other. Whichever one starts first wins. Anyone know what I'm

RE: Binding Address Problem

2004-11-02 Thread Wick, Daniel
instance. Tomcat uses several ports for it's operation. Notice your exception is throwing 8005. This is the port that Tomcat listens for shutdown requests. Change it to a different value in one of the server.xml config files. Ed Wick, Daniel wrote: I have a similar problem. I

RE: problem redeploying war files on tomcat 4.x

2004-10-06 Thread Wick, Daniel
a packed WAR? Yoav Shapira Millennium Research Informatics -Original Message- From: Wick, Daniel [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 9:12 PM To: '[EMAIL PROTECTED]' Subject: problem redeploying war files on tomcat 4.x Hi. I have an existing application deployed

RE: problem redeploying war files on tomcat 4.x

2004-10-06 Thread Wick, Daniel
around for the duration of the application, and need not survive a server restart, you can write them to your context's tempdir. Yoav Shapira Millennium Research Informatics -Original Message- From: Wick, Daniel [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 9:13 AM

problem redeploying war files on tomcat 4.x

2004-10-05 Thread Wick, Daniel
Hi. I have an existing application deployed as a war file. When I update the war file, stop and start tomcat again, the war file is not re-expanding over the old deployment. I have set the permissions to 777 so it should not be a permissions issue. It works if I delete the existing directory

help to deploy to dir other than webapps

2004-09-20 Thread Wick, Daniel
Hi. I'm a newbie to the list! I have a .war file that deploys fine if I put it into the default webapps directory. If I add this (below) xml file to the webapps directory specifying a different spot than webapps, then it doesn't work. It partially deploys, but the app can't get some of it's

RE: Newbie question

2001-04-13 Thread Wick, Daniel
Are all your JSP files located in the webapps directory all the html pages in the docs directory? If not you need to configure your server.xml to include your additional directories. Hope that may help you. Die$el -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]]

Tomcat with Netscape Enterprise Server HP-UX

2001-04-13 Thread Wick, Daniel
Anyone used Tomcat with Netscape Enterprise Server on a UNIX box? Where can I get the redirector to work with this? Dan Wick [EMAIL PROTECTED] "The software said to install IIS version 4 or better, so I installed Apache."