cancel
Showing results for 
Search instead for 
Did you mean: 

Error configuring Webdisparcher

Former Member
0 Kudos

Hi,

I'm trying to configure a webdisp in a Windows Server 2003 SP1

I execute in the cmd this to activate the service:

ntscmgr install sapwebdisp -b C:\usr\sap\SWD\sapwebdisp.exe -p pf=c:\usr\sap\SWD\sapwebdisp.pfl

and everything is ok but when I enter and see the service I see that is not started so when I do a right click over it and try to start it the system give me this error:

Could not start the sapwebdisp service on Local Computer.

Error 1053: The service did not respond to the start or control request in a timely fashion.

I'm logged with a user Administrator.

Thanks for your help!!

Accepted Solutions (1)

Accepted Solutions (1)

TomCenens
Active Contributor
0 Kudos

Dear Carlos

Can you please check in the service definition in Windows if your command line is properly inserted into the service ?

Sometimes in windows you have to use another character to create the service, then go into the registry and change that character to the correct one because some characters cannot be interpreted by ntscmgr for the service creation.

Kind regards

Tom

Answers (5)

Answers (5)

0 Kudos

Try create a service with SC tool:

sc create SAPWebDisp binpath= "C:\usr\sap\SWD\sapwebdisp.exe service

pf=c:\usr\sap\SWD\sapwebdisp.pfl" type= own start= demand

cheers

Clebio

Former Member
0 Kudos

Thxs Anil, I delete the service and created again as u said but is not working yet... same error... 😕

former_member227283
Active Contributor
0 Kudos

Hi ,

Pls follow the below procedure.

1. Goto to registery editor using command regedit in run.

2. In registery editor Press CTRL+F to search object.

3. In search field enter value sapwebdisp

4. once you find the sapwebdisp, you will see ImagePath in right side.

5. double click on ImagePath and insert the value as below

C:\usr\sap\SWD\sapwebdisp.exe service c:\usr\sap\SWD\sapwebdisp.pfl

make sure on above path sapwebdisp.exe and sapwebdisp.pfl is present physically .

6. Once done , Pres F3 to search next object , search till you get prompt search is finished successfully.

You have to change all the imagepath which is allocated to sapwebdisp service.

Once done, try to start the service and let us know the status.

Thanks

Anil

Former Member
0 Kudos

Hi Carlos,

I had similar issue with one of the SAP service on Windows system. This error comes up if any of Windows services are taking more time to start than 60000 ms (60 sec), I amde following changes and my service started running. Try this one.

Go to Windows -> Start -> Run -> REGEDIT

Navigate on:

  • My Computer

  • HKEY_LOCAL_MACHINE

  • SYSTEM

  • CurrentControlSet

  • Control

In "Control" folder, create a new entry (DWORD VALUE) and assign the name "ServicesPipeTimeout".

Now, double click on "ServicesPipeTimeout", select Base = Decimal and set the value data to 90000. Close the regedit and

reboot the workstation.

Cheers

Former Member
0 Kudos

HI!

Thanks both for ur help!!

Anil, I try to execute the command as u said but the prompt give me this error:

C:\usr\sap\SWD>ntscmgr install sapwebdisp -b C:\usr\sap\SWD\sapwebdisp.exe -p "s

ervice pf=c:\usr\sap\SWD\sapwebdisp.pfl"

failure: CreateService (0x431)

Tom, Where is the service definition in windows to check? I go to Services and see the service of the sapwebdisp but I don't see the part that u re tell me.

Thanks a lot people!

former_member227283
Active Contributor
0 Kudos

Hi,

First you have to remove the exisiting sapwebdisp service which you have created.

command will be as follows.

ntscmgr remove sapwebdisp.

Once this is done the create the service as suggested earlier.

Thanks

Anil

blanca_serrano
Advisor
Advisor
0 Kudos

Hello,

Can you please try with the following command?

ntscmgr install sapwebdisp -b C:\usr\sap\SWD\sapwebdisp.exe -p "service pf=C:\usr\sap\SWD\sapwebdisp.pfl"

Regards,

Blanca

former_member227283
Active Contributor
0 Kudos

Hi,

It seems you have created Windows service with wrong command.

Rung the following command to resolve the issue.

ntscmgr install sapwebdisp -b C:\usr\sap\SWD\sapwebdisp.exe -p "service pf=c:\usr\sap\SWD\sapwebdisp.pfl"

Thanks

Anil