Actions
Support #463
closedRunning Wt Application As Windows Service
Start date:
08/11/2010
Due date:
% Done:
0%
Estimated time:
Description
How do i run Wt Application as windows service.
Updated by Wim Dumon over 14 years ago
There are some possibilities:
- Use the (brand-new! To be released very soon!) ISAPI connector and deploy as a plugin for IIS (which runs as a service)
- You write your own main() in Wt. So write your program as a Windows Service, using the appropriate Win32 API's: http://msdn.microsoft.com/en-us/library/ms685967%28VS.85%29.aspx I'm sure google finds tutorials and examples of these, such as http://www.devx.com/cplus/Article/9857
- Use a library to quickly write a service (I know these exist, but can't recommend because I haven't used them)
- This question on stackoverflow: http://stackoverflow.com/questions/1554047/convert-a-c-program-to-a-windows-service
Actions