I would think that you would want Application specific folder option of docBase in your context.xml

-symlink
All users of the box (unless specifically excluded) will operate with the symlink

-docBase an attribute which is embedded in your webapps context
/META-INF/context.xml
If you only want to change the load point for your docs for your specific webapp
you can modify docBase for your webapps context to quote

"You may specify an absolute pathname for this directory or WAR file, or a pathname that is relative to the appBase directory of the owning Host"

documentation available at
http://tomcat.apache.org/tomcat-5.5-doc/config/context.html

Martin--
______________________________________________
Disclaimer and confidentiality note
Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission.





From: "Robinson, Eric" <[EMAIL PROTECTED]>
Reply-To: "Tomcat Users List" <users@tomcat.apache.org>
To: "Tomcat Users List" <users@tomcat.apache.org>
Subject: RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?
Date: Tue, 1 Aug 2006 10:02:27 -0700
MIME-Version: 1.0
Received: from mail.apache.org ([209.237.227.199]) by bay0-mc10-f8.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Tue, 1 Aug 2006 10:03:04 -0700
Received: (qmail 1922 invoked by uid 500); 1 Aug 2006 17:02:51 -0000
Received: (qmail 1910 invoked by uid 99); 1 Aug 2006 17:02:51 -0000
Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Aug 2006 10:02:51 -0700
Received: pass (asf.osuosl.org: local policy)
Received: from [71.9.23.10] (HELO ns1c.nvipa.com) (71.9.23.10) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Aug 2006 10:02:51 -0700 Received: from ipa-vault.nvipa.com (unknown [71.9.23.9])by ns1c.nvipa.com (Postfix) with ESMTP id A0E25114218for <users@tomcat.apache.org>; Tue, 1 Aug 2006 10:36:59 -0700 (PDT) Received: from mail pickup service by ipa-vault.nvipa.com with Microsoft SMTPSVC; Tue, 1 Aug 2006 10:02:31 -0700
X-Message-Info: LsUYwwHHNt0voKmStxjXEixp3BQ5WzKbBHp64yvqDxQ=
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Help: <mailto:[EMAIL PROTECTED]>
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:users@tomcat.apache.org>
List-Id: <users.tomcat.apache.org>
Delivered-To: mailing list users@tomcat.apache.org
X-ASF-Spam-Status: No, hits=0.0 required=10.0tests=
X-Spam-Check-By: apache.org
Content-Class: urn:content-classes:message
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807
X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Someone Please: Why Is Tomcat Looking In The Wrong Directory?
thread-index: Aca1ite8yMjJ3haQSAqx+0a5HfS/fwAAHa3g
X-OriginalArrivalTime: 01 Aug 2006 17:02:31.0030 (UTC) FILETIME=[468C8160:01C6B58C]
X-Virus-Checked: Checked by ClamAV on apache.org
Return-Path: [EMAIL PROTECTED]

Chris,

It makes sense, but before I try the symlink approach, be advised of the
full scenario. Multiple doctor's offices will be connected to the same
server. Each office will have its own instance of tomcat running a copy
(sometimes a different version) of the 3rd party app. The config files
are different for each site. For example, the file
/home/myacct/tomcat5/webapps/mobiledoc/mobiledocconfig.properties
contains database connection information so each instance of the
mobiledoc application connects to a matching mysql database (on a
different server). Does the brute-force approach you outlined still
apply?

--
Eric Robinson




Disclaimer - August 1, 2006
This email and any files transmitted with it are confidential and intended solely for Tomcat Users List. If you are not the named addressee you should not disseminate, distribute, copy or alter this email. Any views or opinions presented in this email are solely those of the author and might not represent those of Physician Select Management (PSM) or Physician's Managed Care (PMC). Warning: Although the message sender has taken reasonable precautions to ensure no viruses are present in this email, neither PSM nor PMC can accept responsibility for any loss or damage arising from the use of this email or attachments.-----Original Message-----
From: Christopher Schultz [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 01, 2006 9:55 AM
To: Tomcat Users List
Subject: Re: Someone Please: Why Is Tomcat Looking In The Wrong
Directory?

Eric,

> java.io.FileNotFoundException:
> /usr/local/tomcat5/webapps/mobiledoc/conf/mobiledoccfg.properties (No
> such file or directory)
>
> Grrr...

Okay, time for the brute force method:

$ grep "conf/mobiledoccfg" `find /home/myacct/tomcat5/ -type f`

Assuming that you find a .class file (or even better, a Java or JSP
file) that contains that path, poke around in there to see if the path
has been hard-coded.

If it has been hard-coded, call up your 3rd-party vendor and let them
know, and ask for a patch.

Here's a quick workaround:

$ cd /usr/local/tomcat5
$ rm -rf conf     (check to see if this is okay!!)
$ ln -s /home/myaccount/tomcat5/conf .

That ought to do the trick. You might have to turn on symlink following
in order to get it working.

If none of this makes sense or you can't find anything, I might be
willing to take you up on your offer for payment to take a first-hand
look. ;)

-chris



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to