Return-Path: Delivered-To: apmail-ws-axis-user-archive@www.apache.org Received: (qmail 76272 invoked from network); 7 Jan 2004 19:44:54 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 7 Jan 2004 19:44:54 -0000 Received: (qmail 55415 invoked by uid 500); 7 Jan 2004 19:44:34 -0000 Delivered-To: apmail-ws-axis-user-archive@ws.apache.org Received: (qmail 55403 invoked by uid 500); 7 Jan 2004 19:44:33 -0000 Mailing-List: contact axis-user-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-user@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-user@ws.apache.org Received: (qmail 55258 invoked from network); 7 Jan 2004 19:44:32 -0000 In-Reply-To: Subject: RE: Discovering the webapp path. To: axis-user@ws.apache.org X-Mailer: Lotus Notes Release 6.0.1CF1 March 04, 2003 Message-ID: From: Junaid.Bhatra@mro.com Date: Wed, 7 Jan 2004 14:45:19 -0500 X-MIMETrack: Serialize by Router on MTA1/MRO(Release 6.0.2CF1|June 9, 2003) at 01/07/2004 02:46:58 PM MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N You can try the following: String realWebInfPath = ctx.getRealPath("/WEB-INF"); This should give you the abolute path to the the /WEB-INF folder assuming your web app is not packaged up as a .war file (in this case it will return null). You can then work off there. - Junaid "Robert Lowe" To 01/07/2004 01:55 cc PM Subject RE: Discovering the webapp path. Please respond to axis-user@ws.apac he.org getResourceAsStream() can be used to load any kind of file from the classpath, not just .class files. For example, it can be used for image files or configuration files--useful for loading any kind of resource when you don't know or care about the nature of the underlying filesystem. What it *can't* be used for however, is writing or modifying files, so it's probably not useful to you. What I've done in the past is include a configuration parameter (e.g. a servlet init-param) to specify the filesystem location of the webapp directory. Of course that's one more thing that needs to be configured at deployment time-- but I'm not aware of a better solution. Best regards, Robert Lowe http://RMLowe.com/ -----Original Message----- From: Sean Leblanc [mailto:SeanL@insightamerica.com] Sent: Thursday, January 08, 2004 2:38 AM To: 'axis-user@ws.apache.org' Subject: RE: Discovering the webapp path. user.dir gives me the directory of the tomcat binary directory. I'm not sure that will always and forever be the case? getResourceAsStream() I'm not familiar with. It looks like it's used to load classes? Loading classes is actually why I was thinking there should be a way to get access to the directory in question in the first place. I need the path so that I can write some data to a file there. TIA, -- Sean LeBlanc Software Developer insightamerica "Those who do not understand Unix are condemned to reinvent it, poorly." --Henry Spencer -----Original Message----- From: Keith Bohnenberger [mailto:kbohnenberger@mcdonaldbradley.com] Sent: Wednesday, January 07, 2004 10:02 AM To: axis-user@ws.apache.org Subject: RE: Discovering the webapp path. You can try getting the java system property user.dir Why do you need the path? Can you get away with using getResourceAsStream(...) instead? > -----Original Message----- > From: Sean Leblanc [mailto:SeanL@insightamerica.com] > Sent: Wednesday, January 07, 2004 11:40 AM > To: 'axis-user@ws.apache.org' > Subject: Discovering the webapp path. > > I'm hoping this isn't a FAQ somewhere. I did try googling and searching > the > mailing list. Here goes: > > Is there a way to, at runtime, discover the path that the webapp is in? I > can't really rely on the root path being any particular path and doing > absolute path, because depending on how tomcat is started, root is in > different places. > > > TIA, > > -- > Sean LeBlanc > Software Developer > insightamerica > "Those who do not understand Unix are condemned to reinvent it, poorly." > --Henry Spencer > e-Mail Notice: This communication may contain sensitive information. If > you > are not the intended recipient, or believe that you have received this > communication in error, do not print, copy, retransmit, disseminate, or > otherwise use the information contained herein for any purpose. Please > alert the sender that you have received this message in error and delete > the > copy that you received. e-Mail Notice: This communication may contain sensitive information. If you are not the intended recipient, or believe that you have received this communication in error, do not print, copy, retransmit, disseminate, or otherwise use the information contained herein for any purpose. Please alert the sender that you have received this message in error and delete the copy that you received.