I'll reply to myself ;) Yes, the Alexandria will setup/run JAMES on XP
I created a .bat file called InstallJamesNTService.bat containing the following (I used the Alexandria tomcat.bat file as my template, as you can see): @echo off echo -------- echo Usage: %0 jdk_home james_home (classic/hotspot/server) echo NOTE: You MAY NOT use spaces in the path names. echo JDK 1.3 does not come with hotpot server by default, you must echo install this seperately if you wish to use it. echo Example: %0 c:\progra~1\jdk c:\progra~1\james classic echo -------- if "%1" == "" goto eof if "%2" == "" goto eof if "%3" == "" goto eof copy JavaService.exe %2\bin\James.exe > nul %2\bin\James.exe -install JamesMailServer %1\jre\bin\%3\jvm.dll -Djava.ext.dirs=%2\lib -Djava.class.path=%CLASSPATH%;% 2\bin\phoenix-loader.jar;%2\bin\phoenix-engine.jar -start org.apache.avalon.phoenix.launcher.Main -out %2\logs\stdout.log -err %2\logs\stderr.log goto eof :eof I created another .bat file called UnistallJamesNTService containing the following 1 line: James -uninstall JamesMailServer By copying the 2 above .bat files and the JavaService.exe (follow the download link at http://www.alexandriasc.com/software/JavaService/index.html) to the <james>\bin folder, I am able to install and uninstall the JamesMailServer NT service! Steve B. ----- Original Message ----- From: "sbelt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 25, 2002 4:28 PM Subject: Re: NT Service > Where can I obtain this solution/package? > > Also, does anyone know if the Alexandria solution works on XP? > > TIA, > > Steve B. > > ----- Original Message ----- > From: "Lionel Lindemann" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Monday, May 28, 2001 10:19 AM > Subject: NT Service > > > > I have packaged a solution to run james as an NT service. It uses > > JavaService from Alexandria > > (http://www.alexandriasc.com/software/JavaService/index.html). See the > > readme file for installation instructions. You have to edit the .bat file > to > > specify the path where james is installed. Tell me if you have any > problems. > > > > From: travis > > Subject: NT Service > > Date: Mon, 14 May 2001 12:15:47 -0700 > > > > -------------------------------------------------------------------------- > -- > > ---- > > > > How can I run James as a service on NT? > > > > Travis Reeder > > Chief Software Architect > > ThinkVirtual > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
