![]() |
Why Cant Start A service.
i wrote an service, now when trying to run him i get this:
Code:
i have regsitred service main and i dont know what couse that, did anyone mess with somthingg like this ?
C:\svch\dll>net start xmldrv
The Who care ha it service is starting. The Who care ha it service could not be started. A system error has occurred. System error 127 has occurred. The specified procedure could not be found. Main code:
Code:
what can be wrong ?
begin
installservice; //uninstallservice; FillChar(DispatchTable, SizeOf(DispatchTable), 0); DispatchTable[0].lpServiceName:= PChar(S_Name); DispatchTable[0].lpServiceProc:= @ServiceProc; StartServiceCtrlDispatcher(DispatchTable[0]); end. |
Re: Why Cant Start A service.
Hallo,
ich nehm mal an, dass deine Muttersprache deutsch ist, soviele Fehler kann ein Engländer niemals machen. Bitte formuliere das ganze in deutsch! rainer |
Re: Why Cant Start A service.
Hello rainer,
Zitat:
@ZuBi: Are you sure that the problem is in the Code you posted? What does the installservice method do? I don't think that those 4 lines of code cause your service to crash :-? Greetz alcaeus |
DP-Maintenance
Dieses Thema wurde von "alcaeus" von "Object-Pascal / Delphi-Language" nach "Windows API / MS.NET Framework API" verschoben.
Und ab zur WinAPI. Ist dort wohl besser aufgehoben. |
Re: Why Cant Start A service.
Zitat:
Delphi-Quellcode:
Log:
FillChar(DispatchTable, SizeOf(DispatchTable), 0);
DispatchTable[0].lpServiceName:= PChar(S_Name); DispatchTable[0].lpServiceProc:= @ServiceProc; If not StartServiceCtrlDispatcher(DispatchTable[0]) Then AddToMessageLog('StartServiceCtrlDispatcher error');
Code:
its seems its not passing this so the problem comes from there, i tryed to see if its somthing with ServiceProc but when i put there a log, its ont wrting anything so its not getting to there, i am trying to implent service in a dll( is it other method ? ).
[16:02:13] StartServiceCtrlDispatcher error
i know its to know the problem from this few lines i have posted, there for i will post all soon. Ps: It seems it cant register the proc (@ServiceProc) so it cant find the procedure, i dont know why. [edit=alcaeus]Replaced code-tags with delphi-tags. Mfg, alcaeus[/edit] |
Re: Why Cant Start A service.
Zitat:
Zitat:
Zitat:
Zitat:
|
Re: Why Cant Start A service.
Zitat:
|
Re: Why Cant Start A service.
Zitat:
Can you please post the link to the article (with C code). Maybe it will bring the enlightening moment ;) ... thanks. |
Re: Why Cant Start A service.
Zitat:
anyway here is a link might help ![]() first u create a service, then spfic it to svchost, and add feild called servicedll that has your dll after that u just make the service - < not works ps. i will try to reserch it again.. couse i need it too i am days on it and nothing. { // Articles: // 1. HOWTO Create a service dll used by svchost.exe by bingle, at: ![]() // 2. Inside Win32 Services, Part 2 by: Mark Russinovich, at: ![]() // 3. Platform SDK: Tools - Rundll32, at: ![]() } |
Re: Why Cant Start A service.
The perhaps most interesting thing (which you did wrong as well) is, that you MUST NOT use StartServiceCtrlDispatcher(). Actually this function does nothing more than passing the dispatcher function address to the SCM. The SCM calls it and the service EXE is no more than a "quasi-DLL" of the SCM from this point.
So this was your first mistake. You don't need to call this function because it is only needed if your service was located in an EXE file! ... to be continued ... |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:02 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz