We have soap services running on our unix box (local network with AFS). Sometimes our services are down and our front end developers, due to lack of knowledge of unix find it difficult to restart the services. Is it possible to build a UI(C#-winforms) which will login to the Unix box and run scripts which starts the service/runs a command to check if services are running on a particular port and capture the output.
We have soap services running on our unix box (local network with AFS). Sometimes
Share
See the
System.Diagnostics.Processclass:http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx
Once a
Processinstance is created and running, the.StandardOutputproperty will contain a StreamReader that can be used to read the output of the executing process.