Re: [Interest] debug QtService

2012-11-09 Thread alexander golks
I want to make web service method, requesing which I would tell service to stop. if RequestMapper is derived from QtService you should be able to call the QtServiceBase::stop() method instead of QCoreApplication::exit(). we call it via a wrapping SLOT triggered by a timer like: /*SLOT*/

Re: [Interest] debug QtService

2012-11-08 Thread BRM
From: Sergey sh0...@gmail.com Hello, all I'm developing windows web service using QtService. To debug it, I launch program in VS2005 debugger with -e argument. It starts in console mode and handles requests. How can I emulate stopping the service, so that all code, which is working usually

[Interest] debug QtService

2012-11-07 Thread Sergey
Hello, all I'm developing windows web service using QtService. To debug it, I launch program in VS2005 debugger with -e argument. It starts in console mode and handles requests. How can I emulate stopping the service, so that all code, which is working usually when windows stops the service? I