----------
From: Matt Choate mchoat@ctp.com
To: Java Apache Users java-apache-users@list.working-dogs.com
Subject: RE: JDBC and JServ
Date: Tue, Mar 23, 1999, 3:05 PM
Thanks for the info. I figured it out FINALLY. I had to set
wrapper.path=c:\orant\bin
wrapper.path=c:\jdbc
To let the DLLs be found when ORACLEs JDBC stuff is loaded.
Matt
> Matt Choate wrote:
> >
> > I am trying to get a servlet to interact with a DB (Oracle 7.3) usng
> JDBC on
> > NT. Is there anything special I need to setup in the jserv.properties
> file?
> > I set the wrapper.classpath corretly. There is a DLL for Oracle JDBC, do
> I
> > have to let JServ know about this or will it get picked up from my
> normal
> > PATH settings. Thanks in advance.
> >
> > Matt
> >
> > __________________________________________
> >
> > Matt Choate
> > EMail: mchoat@ctp.com
> > Phone: (617)679-5444
> > Senior Developer
> > Enterprise Applications Group
> > Cambridge Technology Partners
> > 304 Vassar Street Cambridge, MA 02139
> > http://www.tiac.com/users/choate
> > __________________________________________ |
----------
From: "Craig R. McClanahan" cmcclanahan@mytownnet.com
To: Java Apache Users java-apache-users@list.working-dogs.com
Subject: Re: unable to load Oracle database driver inside servlet
Date: Mon, Jun 7, 1999, 8:52 AM
Depankar Neogi wrote:
> Hi,
> I am unable to load the database driver inside the servlet. The
> following are my configurations -
>
> Apache JServ 1.05b
> Apache Web Server 1.3.6
> OS Windows NT Workstation 4.0 SP4
>
> The oracle database driver "classes111.zip" is in my CLASSPATH system
> variable. The code is attached below -
If you are starting Apache JServ automatically (the usual case), the
CLASSPATH environment variable is ignored. Add a line like this to your
jserv.properties file:
wrapper.classpath=/my/path/to/classes111.zip
(obviously, you need to set the correct path for your system).
Craig McClanahan |