vote up 1 vote down star

Hi All,

I wanted a help in executing a static method asynchronously as well as in it's own process so that even if the client application that kicked-off this execution is closed, the method will continue it's execution.

One option to do this is create a console application and execute this console application as a new process. However, I was thinking if anyone has a different solution to this problem.

Thanks in advance.

Regards, Vilas

flag

3 Answers

vote up 1 vote down

If I understand your problem right, it is better to go for Windows Service and Remoting in .Net. You can initiate the call to the method from any Remoting client once the service is started.

link|flag
vote up 0 vote down

I agree with srikanthv about a Windows Service, but I'd personally use the MSMQ to communicate with it.

link|flag
vote up 0 vote down

If the static method needs to be on the same machine as the client and you can't install services on the machine, you could always set a flag on the client to indicate that the method is running, and if the client is closed while the flag is set, abort the close and just hide the form until the method completes, then close gracefully.

link|flag

Your Answer

Get an OpenID
or

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