RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Mark Eggers
m > completely floored by the amount of help people > offered. This is a very > active list, to say the least. > > -- > Eric Robinson > > > -Original Message----- > From: David Smith [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 01, 2006 11:34 AM >

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Robinson, Eric
mith [mailto:[EMAIL PROTECTED] >Sent: Tuesday, August 01, 2006 8:55 AM >To: Tomcat Users List >Subject: Re: Someone Please: Why Is Tomcat Looking In The Wrong >Directory? > >Fair enough. Are the JSPs, servlets, etc., ... all being called from >the /home/myaccount/tomcat5/webap

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread David Smith
sday, August 01, 2006 8:23 AM To: Tomcat Users List Subject: Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory? I'm responding to the first message in the thread, but have read all of it. A thought: How are you opening this file? Hopefully it's via

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Christopher Schultz
Eric, > 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 fil

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Martin Gainty
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 fo

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Robinson, Eric
SM 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 Look

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Robinson, Eric
d Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 8:55 AM To: Tomcat Users List Subject: Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory? Fair enough. Are the JSPs, servlets, etc., ... all being called from the /home/myaccount/tomcat5/webapps directory? Here's

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Christopher Schultz
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 e

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Robinson, Eric
meone Please: Why Is Tomcat Looking In The Wrong Directory? On Aug 1, 2006, at 10:15 AM, Robinson, Eric wrote: > The contents of the file are as follows: > >debug="1" reloadable="false"> > Just a stab in the dark, but why don't you try to put the

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread David Smith
: Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory? I'm responding to the first message in the thread, but have read all of it. A thought: How are you opening this file? Hopefully it's via ServletContext.getResourceAsStream( "/myapp/conf/myapp.properties" )

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Hassan Schroeder
On 8/1/06, Robinson, Eric <[EMAIL PROTECTED]> wrote: I deleted the first one. It was a legacy of when the application used to be in that path. Same result. And restarted Tomcat? What is your instance of Tomcat's relevant appBase pointing to? -- Hassan Schroeder [EMAIL

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Robinson, Eric
mcat Users List Subject: Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory? I'm responding to the first message in the thread, but have read all of it. A thought: How are you opening this file? Hopefully it's via ServletContext.getResourceAsStream( "/myapp/conf/myapp

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Robinson, Eric
8:06 AM To: Tomcat Users List Subject: Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory? On 8/1/06, Robinson, Eric <[EMAIL PROTECTED]> wrote: > mobiledoc.xml exists in /usr/local/tomcat5/conf/Catalina/localhost > > mobiledoc.xml exists in > /home/myaccoun

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread David Smith
I'm responding to the first message in the thread, but have read all of it. A thought: How are you opening this file? Hopefully it's via ServletContext.getResourceAsStream( "/myapp/conf/myapp.properties" ) ; --David Robinson, Eric wrote: Hello all, When I start tomcat, I get several mes

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Steve Lianoglou
On Aug 1, 2006, at 10:15 AM, Robinson, Eric wrote: The contents of the file are as follows: Just a stab in the dark, but why don't you try to put the absolute path to the mobiledoc webapp in the docBase attribute? It looks like something is getting screwy with your environment (CATLINA_{

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Hassan Schroeder
On 8/1/06, Robinson, Eric <[EMAIL PROTECTED]> wrote: mobiledoc.xml exists in /usr/local/tomcat5/conf/Catalina/localhost mobiledoc.xml exists in /home/myaccount/tomcat5/conf/Catalina/localhost The above just feels wrong -- why both places? I'd delete the first one. The contents of the file a

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Robinson, Eric
e- From: Raghupathy,Gurumoorthy [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 6:08 AM To: 'Tomcat Users List' Subject: RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory? Can you post ( copy the content and paste it into the email ) the myapp.xml in the c

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Raghupathy,Gurumoorthy
IL PROTECTED] Sent: 01 August 2006 14:03 To: Tomcat Users List; Corobitsyn Roman Subject: RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory? I checked and the permissions are correct, but I think you missed the basic problem. We have an application, "myapp." It exists in

RE: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Robinson, Eric
CTED] Sent: Tuesday, August 01, 2006 5:45 AM To: Tomcat Users List Subject: Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory? Hello Eric, Try to check OS permissions for dir webapps/myapp/conf Tuesday, August 1, 2006, 4:36:09 PM, you wrote: RE> Hello all, RE> When I s

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Corobitsyn Roman
Hello Eric, Try to check OS permissions for dir webapps/myapp/conf Tuesday, August 1, 2006, 4:36:09 PM, you wrote: RE> Hello all, RE> When I start tomcat, I get several messages like these: RE> java.io.FileNotFoundException: RE> /usr/local/tomcat5/webapps/myapp/conf/myapp.properties (No