Image files and DeployTask...

2006-06-05 Thread Greg Allen
I have a build.xml that used DeployTask to deploy my application. Here's the build.xml: In my deployed application I have some image files (GIF format), which end up in the /images directory. However, for some reason, when the application is deployed the images end u

RE: Image files and DeployTask...

2006-06-05 Thread Greg Allen
, the ant tasks use the WEBDAV application from within Tomcat and this is the source of your problem. Are you deploying to local or remote host? If it is a remote host, then it could be a bug in the Tomcat version running on the remote host. On 6/5/06, Greg Allen <[EMAIL PROTECTED]> wrote:

RE: Image files and DeployTask...

2006-06-06 Thread Greg Allen
. Go to the Tomcat webapps area and pull the image up in IE. It is corrupted. -- Greg _ From: Greg Allen Sent: Monday, June 05, 2006 2:35 PM To: 'users@tomcat.apache.org' Subject: Image files and DeployTask... I have a build.xml that used DeployTask to

Mod_jk/firewall configuration problems

2006-06-20 Thread Greg Allen
I am having a problem with mod_jk.so. I have apache set up as my web server, forwarding my jsp traffic to a tomcat server running on the same machine.   This setup works fine when the client is inside of my firewall. However, when I try to access my site from outside the firewall, mod_jk

RE: Mod_jk/firewall configuration problems

2006-06-21 Thread Greg Allen
t will be served by the httpd directly. JkUnMount /testapp/images/*.gif ajp13w JkUnMount /testapp/images/*.jpg ajp13w -- Greg _ From: Serlet Jean-Claude [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 2:35 AM To: Greg Allen; users@tomcat.apache.org Subje

RE: Mod_jk/firewall configuration problems

2006-06-21 Thread Greg Allen
aterial from any computer. All e-mails sent from or to Fidelity may be subject to our monitoring procedures. 'Direct link to Fidelitys website. <http://www.fidelity-international.com/world/index.html> -Original Message- From: Greg Allen [mailto:[EMAIL PROTECTED] Sent: 21 Ju

Tomcat, , and context.xml

2009-05-17 Thread Greg Allen
I am trying to use ApacheDS 1.5 with Tomcat 5.5.17. I first set up ApacheDS as a standalone appliation and set up the following in the Tomcat server.xml file: ldap://localhost:10389"; digest="SHA" allRolesMode="authOnly" userPassword="userPa

RE: Tomcat, , and context.xml

2009-05-19 Thread Greg Allen
nd my context.xml and don't see anything wrong. What should I look for? Do I need to go to Tomcat 6? I'd rather not, but if I have to Thanks, -- Greg -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Monday, May 18, 2009 3:06 PM To: Tomcat Users List

RE: Tomcat, , and context.xml

2009-05-20 Thread Greg Allen
Thanks Chuck! > Do you happen to have a conf/Catalina/[host]/test.xml file? If so, it will override the one > in the webapp's META-INF/context.xml, causing your to be ignored. This was the problem. I modified that one and it is now using the JNDIRealm. However, that exposes a timing issu

Nesting servlets with different credentials

2010-01-06 Thread Greg Allen
I have two servlets, http://localhost:8080/s1 and http://localhost:8080/s2. Both servlets require BASIC authentication. My application will call s1, and then s1 will turn around and call s2. However, the credentials supplied to s2 need to be different than those supplied to s1. Inside of s1