Triadian - Monday, April 4, 2011 2:32 AM:
Hi All,
I have written a server side method using C# which starts an application installed in the server.I have used System.Diagnosis.Process() function to start my app, the method runs successfully, but the application doesn't seem to start.I tried changing the IIS settings with out any success. Any suggestions?
Regards,
Shafi
aknourenko - Tuesday, April 12, 2011 7:29 PM:
It's impossible without seeing your code and without understanding what kind of application you are trying to run (e.g. does it do something that requires special privileges?) to say what's the problem. In general it's definitely possible to start a process from the server method.
Triadian - Monday, April 18, 2011 8:01 AM:
Hi,
Thanks for the reply. My application is written in C# and the server method in Aras I am using is written in C# .The API function I have written in server method 'Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)' returns Application data of Default User (C:Documents and SettingsDefault UserApplication Data), and my process fails due to lack of write permissions to the Default User's local settings.SInce the process is running under 'NETWORK SERVICE' user, I was expecting to get (C:Documents and SettingsNetworkServiceApplication Data).Is this the correct folder to write data?
Regards,