Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

nt service installer 1

Status
Not open for further replies.

shekinskiy

Programmer
Nov 14, 2005
11
TR
hi

i want to install my Java application as NT Service. i have tried to find free one from search engines.

i have used smaster, but it is old. i don't know it runs with java 1.4 and java 1.5. and also i cant find any link to download it.

have any ideas?

thanks..
 
I have implemented a Java Application as a windows Service you may want to try.
JavaServiceWrapper from tanukis software. It is a freeware and is an ultimate tool. It can run as a service on windows or as a daemon on unix.

Aaron.
 
I have used both JavaService and the tanukis JavaServiceWrapper and have found them to be excellent offerings.

Tim
---------------------------
"Your morbid fear of losing,
destroys the lives you're using." - Ozzy
 
hi,

i have began to use JavaService.
now i have a problem about to decribe property files in class path.

my classpath like this.
...jar;...jar;....properties;

while running as bat file the jars can find property files, so there is no problem.

i have defined same classpath while installing service
Code:
JavaService.exe -install "Myproject" C:\j2sdk1.4.2_09\jre\bin\server\jvm.dll -Djava.class.path=%CLASSPATH% -start com.a.a.M -out D:\logs\log.txt
but the jars could not find property files. jars, which should read property file, are not my code.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top