Re: [Idrs-help] Log Path Locations in Win2K
Brought to you by:
bigman921
|
From: Marc B. <mbo...@ya...> - 2001-09-24 04:15:03
|
This is because of the way java processes strings and windows use of '\' as dirctory spacers. because '\' in java is the scape character, you need to specify paths with a double '\\', ie : c:\\tomcat\\logs. The othe way to handle it is to use '/' for windows paths for windows as well, ie c:/tomcat/logs. Java will make the conversion automaticly. I like this better since all i have to do is add a drive letter infront of all paths when moving from *nix to windows. Marcoa On Sun, 2001-09-23 at 23:33, Rajagopal. V wrote: > I have set up the log path locations in the web.xml on > my Win2k. But when the server starts, it gives me a > file not found(Access Denied) Error. How do you give a > file location for NT? For Solaris, it wont be a > problem as we can give any location as long as it is > writable. But how do i give it in Win2k. I tried > giving > d:\tomcat\logs but it says Access Denied(The webserver > is not able to write to that location). Help!!!! > Sorry for the trivial question. > > Thanks > Raj > > --- Marc Boorshtein <mbo...@ya...> wrote: > > > > On Sun, 2001-09-23 at 20:00, Rajagopal. V wrote: > > > > > Im trying to install the IDRS and had a look at > > the > > > IDRS_Setup.html document. > > > For the context path, the value given is > > > /var/jakarta-tomcat/webapps/servlet > > > > > > Shudnt the contextpath be > > > /var/jakarta-tomcat/webapps/IDRS > > > > You are right, thats a typo. IDRS shuold idrs > > > > > > > > > > Also, What is the concept of reports being kept > > open? > > > Does it mean that the records will be cached for > > the > > > period of time? IF so, shudnt we give an option > > for > > > individual reports? > > > > What being kept 'Open' means is that the pooling > > system will destroy and > > recreate an instance of a pooled object after a > > given number of days. > > This was made primarily for database connections > > that could become > > 'clogged' over a long period of time. > > > > marc > > > > > __________________________________________________ > Do You Yahoo!? > Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger. http://im.yahoo.com > > _______________________________________________ > Idrs-help mailing list > Idr...@li... > http://lists.sourceforge.net/lists/listinfo/idrs-help |