G
Guest
I am attempting to run an external process from within my web service, but
nothing happens. No errors are thrown, nor are any eventlog messages
written. If I call the same classes directly from a WinForms app (not
through the web service), it works fine. I realise that the difference is
that the webservice runs under the ASPNET user and WinForms is running under
the interactive user (I have checked, and this is the case). Both are local
admins. Because there are no errors, I don't know where to go next.
Can anyone help?
This is the call:
System.Diagnostics.Process process =
System.Diagnostics.Process.Start(printAppPath, args);
Thanks,
Peter
nothing happens. No errors are thrown, nor are any eventlog messages
written. If I call the same classes directly from a WinForms app (not
through the web service), it works fine. I realise that the difference is
that the webservice runs under the ASPNET user and WinForms is running under
the interactive user (I have checked, and this is the case). Both are local
admins. Because there are no errors, I don't know where to go next.
Can anyone help?
This is the call:
System.Diagnostics.Process process =
System.Diagnostics.Process.Start(printAppPath, args);
Thanks,
Peter