vote up 2 vote down star
1

Duplicate: http://stackoverflow.com/questions/717657/is-it-possible-to-run-an-executable-from-a-web-service

Hi

I have Webservice, and I want to run exe file through this Webservice

the Webservice and the exe file are on same computer

How can I do it ?

thank's in advance

flag

31% accept rate

4 Answers

vote up 3 vote down

Process.Start()?

link|flag
vote up 2 vote down

You can use the System.Diagnostics.Process object to start an external process.

EDIT:

Documentation

Example using some advanced features (input/output/error redirecting). It's in VB, but should be easy to port.

link|flag
vote up 1 vote down
Process.Start("path of the program");
link|flag
vote up 0 vote down
Process.Start("app.exe")

OR even better, wrap it in a Windows Service, publish a schema for it and consume through async request to a bus.

link|flag
I know this, but it seems that in Webservice is not working !!! – Gold Jun 1 at 21:01
Because you need to call: WaitForExit() on the Process instance, otherwise you don't get the result on the main thread. – Henrik Jun 2 at 8:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.