I need to call one .exe file in Web Services.
I try->
[WebMethod]
public string HelloWorld()
{
Process.Start("filename.exe");
return "Hello World";
}
but
it's don't work.
Can I run .exe file?
Eric Richardson - 20 Sep 2004 16:15 GMT
in what way doesn't it work?
> I need to call one .exe file in Web Services.
> I try->
[quoted text clipped - 8 lines]
> it's don't work.
> Can I run .exe file?