Stop service in command Line as we do with the web console

Hi there :slight_smile:

For our procedure and stop/restart environements, we need to close in a specific procedure Schedulers, FilePolling, Packages, Adapters, etc before stop windows services (MWS, Then IS, Then Broker).

For the moment all action are perform manually.

I would like to know if it’s possible to “disable” chedulers, FilePolling, Packages, Adapters, etc with commandLine ?

In this case I could perform a DOS script for stop/restart fo environements.

Thanks a lot !
Regards

Vincent

Hi Vincent

Why you don’t create a service (A) that does all these tasks, and then create a client (B) that invokes this service?

For the tasks that A would have to perform (stop/disable Schedulers, File Polling, Packages, Adapters, etc ), you can find the related services at the WmPublic folder (Schedulers, Packages), WmART (adapters). For the file polling notifications, you can peek around the DSP pages to find out which are the services the DSP calls to enable/disable the file polling notifications.

To create the client B, the wm Developer tool can create such client for you: open the service (A), then access the menu | Tools | Generate Code then choose the flavor you want (Java .NET, or even C).

Feng

You could try creating a service which handles an FTP request. Include all of the IS related commands in this service. You could then invoke this service from a dos command by issuing an FTP request to the service.

kpg

Or use curl to execute your service:

curl http://host:5555/invoke/folder.subfolder/service

Hi There

Thanks for your answers and sorry for the delay.
We’ll see with developpers how implement your ideas.

Thanks a lot,
Regards