----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files. Don't make us guess your problem!!!
----------------------------------------------------------------
Kenneth , Sudhi.
Thanks for the reply .The servlet supporting code which is
not a servlet is reading this "eTravel.properties" file.Here is the sneppet
of my code which is accessing the eTravel.properties file.
// Reads the properties file to set the parameters.
package com.ge.med.eTravel;
import java.io.*;
import java.util.*;
public class FileUtil {
private final static String eTravelPropFileName =
"eTravel.properties";//******** this file is in F://Apache, I want to put
this F://Apache/servlets
private final static Properties eTravelPropFile = new Properties();
public FileUtil() {
}
/**
* Read the bytes form the file with FileInputStream & load it in
the eTravelPropFile
*/
private static void loadIniFiles() {
try{
FileInputStream eTravelPropInputStream = new
FileInputStream(eTravelPropFileName);
try{
eTravelPropFile.load(eTravelPropInputStream);
eTravelPropInputStream.close();
}
catch (IOException ioe) {
ioe.printStackTrace();
. ................
Regards,
----- Original Message -----
From: "Kenneth Westelinck" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 12:01 AM
Subject: RE: how to make Apache Look for properties file in Servlets direc
tory?
> ----------------------------------------------------------------
> BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
> WHEN YOU POST, include all relevant version numbers, log files,
> and configuration files. Don't make us guess your problem!!!
> ----------------------------------------------------------------
>
> Guys,
>
> I'm doing the exact same thing.
>
> With this in my zone.properties file:
> servlet.DoIt.initArgs=toProperties=d:/program files/apache
> group/apache/any/directory/you/want
>
> And this in my servlet:
> ...
> public void init (ServletConfig config) throws ServletException {
> super.init(config);
> toProperties = config.getInitParameter("toProperties");
> }
> ...
>
> I'm able to reach any property file I want.
>
>
> regards,
>
> Kenneth
>
> >From: Sudheendra Hebbagilu <[EMAIL PROTECTED]>
> >Reply-To: "Java Apache Users" <[EMAIL PROTECTED]>
> >To: 'Java Apache Users' <[EMAIL PROTECTED]>
> >Subject: RE: how to make Apache Look for properties file in Servlets
> >direc tory?
> >Date: Mon, 5 Feb 2001 10:31:10 -0500
> >
> >----------------------------------------------------------------
> >BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
> >WHEN YOU POST, include all relevant version numbers, log files,
> >and configuration files. Don't make us guess your problem!!!
> >----------------------------------------------------------------
> >
> >Hi,
> >Since Jserv is started by apache, ur jvm's user.dir is apache root.
> >If you want to place ur .properties file in servlet directory, the only
> >thing u need to pass to ur servlet might be the location of the
properties
> >file.
> >That is,
> >.properties file - in ur servlet directory
> >zone.properties - for this servlet , the init parameter would be path to
> >the
> >.properties file
> >
> >Then in ur servlet's init method, read this init property and u can read
> >the
> >properties file in ur servlet directory.
> >
> >I hope this is what u r looking for and its clear, if not i'll explain
once
> >again.
> >HTH
> >Sudhi
> >
> > > -----Original Message-----
> > > From: Manzoor Patel [mailto:[EMAIL PROTECTED]]
> > > Sent: Monday, February 05, 2001 8:55 AM
> > > To: Java Apache Users
> > > Subject: Re: how to make Apache Look for properties file in Servlets
> > > directory?
> > >
> > >
> > > ----------------------------------------------------------------
> > > BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
> > > WHEN YOU POST, include all relevant version numbers, log files,
> > > and configuration files. Don't make us guess your problem!!!
> > > ----------------------------------------------------------------
> > >
> > > Hello Kenneth and Paul Maguire,
> > > In fact I dont want to create a
> > > servlet zone.Let me
> > > put my problem like this...
> > > I have a webApplication the servelet connect to the data
> > > base, mail server..
> > > and I have put the database URL,Driver,Mailserver IP etc in a
> > > properties
> > > file.Now I have this porperties file in Apache root directory
> > > ie F:\Apache
> > > and every thing is working fine. Now if I put this
> > > properties file in the
> > > servelets derectory ( the Apache defalut servelts zone) it is
> > > not reachable.
> > > I want to put this in the servlet directory so that I can
> > > make a JAR file of
> > > all my code including the properties file...so that it will
> > > could be put in
> > > servelets derectory by any one & could the application could be used.
> > > Please let me know how can I go about it. I am new to Apache
> > > please dont
> > > mind if I am asking silly questions.
> > >
> > >
> > > Thanks.
> > > Manzoor
> > >
> > > ----- Original Message -----
> > > From: "Chris Mangiapane" <[EMAIL PROTECTED]>
> > > To: "Java Apache Users" <[EMAIL PROTECTED]>
> > > Sent: Friday, February 02, 2001 7:51 PM
> > > Subject: Re: how to make Apache Look for properties file in Servlets
> > > directory?
> > >
> > >
> > > > ----------------------------------------------------------------
> > > > BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
> > > > WHEN YOU POST, include all relevant version numbers, log files,
> > > > and configuration files. Don't make us guess your problem!!!
> > > > ----------------------------------------------------------------
> > > >
> > > > Manzoor Patel wrote:
> > > > >
> > > > > Hello,
> > > > > I have a properties file, how can I make the
> > > Apache look for
> > > > > the properties file in the servlets directory?
> > > > > By default the Apache is looking for the my properties file in the
> > > > > Apache directory.
> > > > >
> > > > > Many Thanks
> > > > > Manzoor
> > > >
> > > >
> > > > My setup is as follows:
> > > > Apache 1.3.11
> > > > Apache JServ 1.1
> > > > OS: RedHat LInux 5.2
> > > >
> > > > First look in httpd.conf file for the Include directive
> > > > which specifies the path to the jserv.conf file.
> > > > Mine is :
> > > > Include /usr/local/apache/conf/jserv/jserv.conf
> > > >
> > > > Next look in the jserv.conf file
> > > > for the directive ApJServProperties
> > > > this specifies the path to the properties file.
> > > >
> > > > Why would you want to put the properties file in your
> > > > servlets directory?
> > > >
> > > > Also, try to include relevant information like
> > > > Operating System, version of Apache, version
> > > > of JServ, JDK, etc.
> > > >
> > > > Chris Mangiapane
> > > > [EMAIL PROTECTED]
> > > >
> > > >
> > > > --
> > > > --------------------------------------------------------------
> > > > Please read the FAQ! <http://java.apache.org/faq/>
> > > > To subscribe: [EMAIL PROTECTED]
> > > > To unsubscribe: [EMAIL PROTECTED]
> > > > Search Archives:
> > > >
> > > <http://www.mail-archive.com/java-apache-users%40list.working-
> >dogs.com/>
> > > Problems?: [EMAIL PROTECTED]
> >
> >
> >--
> >--------------------------------------------------------------
> >Please read the FAQ! <http://java.apache.org/faq/>
> >To subscribe: [EMAIL PROTECTED]
> >To unsubscribe: [EMAIL PROTECTED]
> >Search Archives:
> ><http://www.mail-archive.com/java-apache-users%40list.working-dogs.com/>
> >Problems?: [EMAIL PROTECTED]
> >
> >
> >--
> >--------------------------------------------------------------
> >Please read the FAQ! <http://java.apache.org/faq/>
> >To subscribe: [EMAIL PROTECTED]
> >To unsubscribe: [EMAIL PROTECTED]
> >Search Archives:
> ><http://www.mail-archive.com/java-apache-users%40list.working-dogs.com/>
> >Problems?: [EMAIL PROTECTED]
> >
>
> _________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
>
>
> --
> --------------------------------------------------------------
> Please read the FAQ! <http://java.apache.org/faq/>
> To subscribe: [EMAIL PROTECTED]
> To unsubscribe: [EMAIL PROTECTED]
> Search Archives:
> <http://www.mail-archive.com/java-apache-users%40list.working-dogs.com/>
> Problems?: [EMAIL PROTECTED]
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Search Archives:
<http://www.mail-archive.com/java-apache-users%40list.working-dogs.com/>
Problems?: [EMAIL PROTECTED]