Does any body know of a way of installing a Java 1.5 program as a
windows service without resorting to writing my own C wrapper. There
seems to be plenty of 1.2 utilities out there ( commercial and free),
any ideas for 1.5?
Many thanks in advance.
Ingo R. Homann - 08 Dec 2005 13:24 GMT
Hi,
> Does any body know of a way of installing a Java 1.5 program as a
> windows service without resorting to writing my own C wrapper. There
> seems to be plenty of 1.2 utilities out there ( commercial and free),
> any ideas for 1.5?
>
> Many thanks in advance.
Did you try "JSL"? (I dont know it if supports Java 1.5.)
Ciao,
Ingo
JavaEnquirer - 08 Dec 2005 15:25 GMT
Cheers,
I'm in the prcess of trying JSL, it seems just the job. Just got to get
it to work now - JVM keeps terminating when I start the service!
Thanks again.
Steve W. Jackson - 08 Dec 2005 16:18 GMT
> Does any body know of a way of installing a Java 1.5 program as a
> windows service without resorting to writing my own C wrapper. There
> seems to be plenty of 1.2 utilities out there ( commercial and free),
> any ideas for 1.5?
>
> Many thanks in advance.
I'm not familiar with JSL recommended in another response. But we've
been using JavaService with our app, though we haven't yet switched up
to Java 1.5. But JavaService is open source and has served our needs
exceedingly well.
= Steve =

Signature
Steve W. Jackson
Montgomery, Alabama
Roedy Green - 09 Dec 2005 00:05 GMT
On 8 Dec 2005 03:53:27 -0800, "JavaEnquirer"
<javaenquirer@hotmail.co.uk> wrote, quoted or indirectly quoted
someone who said :
>Does any body know of a way of installing a Java 1.5 program as a
>windows service without resorting to writing my own C wrapper. There
>seems to be plenty of 1.2 utilities out there ( commercial and free),
>any ideas for 1.5?
see http://mindprod.com/jgloss/service.html
near the bottom.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
Alex Molochnikov - 09 Dec 2005 01:01 GMT
http://wrapper.tanukisoftware.org/doc/english/introduction.html
Works like a charm.
> Does any body know of a way of installing a Java 1.5 program as a
> windows service without resorting to writing my own C wrapper. There
> seems to be plenty of 1.2 utilities out there ( commercial and free),
> any ideas for 1.5?
>
> Many thanks in advance.
Aleksi Kallio - 09 Dec 2005 10:38 GMT
> Does any body know of a way of installing a Java 1.5 program as a
> windows service without resorting to writing my own C wrapper. There
> seems to be plenty of 1.2 utilities out there ( commercial and free),
> any ideas for 1.5?
You could use Commons Daemon:
http://jakarta.apache.org/commons/daemon/
JavaEnquirer - 09 Dec 2005 11:14 GMT
Great, got JSL working, brilliant. Thank you everyone for your help.