Page 1 of 1

Make newlisp app be a windows service?

Posted: Wed May 08, 2013 4:35 pm
by csfreebird
I wish I could install one newlisp app as windows service. Then it could watch over my other processes, make sure they are all alive.
How to do this?

Re: Make newlisp app be a windows service?

Posted: Wed May 08, 2013 5:28 pm
by HPW
I think you will need a programming enviroment/language that can compile such Service app-target.
And this app might use the dll-flavour of newlisp for executing the wanted lsp.

Example tutorial for Delphi:
http://www.tolderlund.eu/delphi/service/service.htm

Re: Make newlisp app be a windows service?

Posted: Thu May 09, 2013 1:54 am
by csfreebird
Thanks. From your idea, I got my solution. Just install one bat file as windows service, and this bat file call my newlisp script file.
For example, My daemon.lsp file is:

Code: Select all

(while true
       (println "hello, I am daemon")
       (append-file "c:\\t.txt" "mm")
       (sleep 1000))
And my daemon.bat file has:

Code: Select all

newlisp C:\windows_service\daemon.lsp
Now, download nssm.exe from http://nssm.cc/download/?page=download
Install this daemon.bat as windows service with the following command:

Code: Select all

nssm install my_daemon C:\windows_service\daemon.bat 

Re: Make newlisp app be a windows service?

Posted: Thu May 09, 2013 6:20 am
by HPW
Hello,

Nice find of a generic solution.
Of cource you will see 2 pocesses in the processlist.
Does there appear any decription for the service?

Regards