首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

服务已经运作,但是ServiceMain好像没运行

2013-08-10 
服务已经运行,但是ServiceMain好像没运行------------------------------分割线-------------------------

服务已经运行,但是ServiceMain好像没运行
------------------------------分割线-------------------------------
我在网上下载了一个DLL服务程序,由于我对这个不是很会,所以有些问题想请教一下高手,
我在Service.msc中看到服务已经启动,但是ServiceMain好像没有运行。贴一下代码。
帮我看一下哪的问题好么。
------------------------------分割线-------------------------------
DWORD _stdcall MainWorkThread(LPVOID lParam)
{
   MessageBox(0,L"Begin Connect Server",L"Tips",MB_OK);、


void __stdcall ServiceMain(DWORD dwArgc, wchar_t* argv[])
{
char svcname[256];
strncpy(svcname, (char*)argv[0], sizeof svcname); //it's should be unicode, but if it's ansi we do it well
wcstombs(svcname, argv[0], sizeof svcname);

hSrv = RegisterServiceCtrlHandlerA(svcname, (LPHANDLER_FUNCTION)ServiceHandler );

if( hSrv == NULL )
return;
else 
FreeConsole();

TellSCM( SERVICE_START_PENDING, 0, 1 );
TellSCM( SERVICE_RUNNING, 0, 0 );

//Run My Main Code=============
HANDLE hThread = CreateThread(NULL,NULL,MainWorkThread,NULL,NULL,NULL);
//WaitForSingleObject(hThread, INFINITE);
CloseHandle(hThread);

    do
{
Sleep(100);//not quit until receive stop command, otherwise the service will stop
}while(dwCurrState != SERVICE_STOP_PENDING && dwCurrState != SERVICE_STOPPED);
}

这么神奇?

搞一个设备注册登录下,然后抓包看看呗

[解决办法]
用调试器(OD,WINDBG等)调试服务程序
To debug the initialization code of a service application, the debugger must be attached when the service is started. This is accomplished by creating a registry key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ProgramName


The ProgramName is the image file for the service application you are debugging. Do not specify a path. For example, the ProgramName might look like MyService.exe.



Under this key create a string data value called Debugger. The value of this string should be set to the full path of the debugger that will be used. For example,

c:\Debuggers\windbg.exe



In addition to setting this registry key, the service application must be marked as "interactive". This allows your service to interact with the desktop, and allows the debugger window to appear on your desktop.

This again requires modifying a registry key: you must bitwise-or the type entry for your service with 0x100 (this is the value for SERVICE_INTERACTIVE_PROCESS according to Winnt.h). The exact location and name of this registry entry varies. For example:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MyServiceKey


Finally, you need to adjust the service application timeout. Otherwise, the service application will kill the debugger within 20 seconds after starting. Adjusting the timeout involves setting an entry in the following registry key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control


Under this key, create a DWORD data value called ServicesPipeTimeout. Set this entry to the amount of time in milliseconds that you want the service to wait before timing out. For example, 60,000 is one minute, while 86,400,000 is 24 hours.

设置ServicesPipeTimeout后需要重启系统才生效

Now, when the service is started, the debugger will also start. When the debugger starts, it will stop at the initial process breakpoint, before the service has begun running. This allows you to set breakpoints or otherwise configure your debugging session to let you monitor the startup of your service. Another option is to place calls to the DebugBreak function in your service from the point at which you would like to break into the debugger. (For more information, see DebugBreak in the Platform SDK documentation.)



If your service is running with other services in a Service Host Process, you may need to isolate the service into its own Service Host Process.

热点排行