Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Process/ProcessStartInfo to control 3rd pary app - Need to move

Status
Not open for further replies.

SBendBuckeye

Programmer
May 22, 2002
2,166
US
Hello all,

We control a 3rd pary app by using the Process class along with ProcessStartInfo because the 3rd pary app is loaded locally on user machines. This is done from a front end Windows form. When the required information has been loaded, the user fires off the 3rd pary app by clicking a button on the Windows form.

Management wants to move the 3rd pary app to a server because it is a resource hog and can take a long time to run and can really bog down user machines in certain situations.

How do I fire off an app on a separate server and communicate with it from my Windows form? The user will still need to set up the data on the front end Windows form, only instead of firing off a local process when they click the button, it will now need to fire off a remote process instead.

Thanks in advance for any ideas and/or suggestions!
 
Go with a client/server setup. Create an app that resides on the server with the 3rd party app, and performs the control functions on the 3rd party app. On the users' PCs create an app that they use to set up the data, and when the button is clicked it sends the data to the app on the server which then starts the 3rd party app.



I used to rock and roll every night and party every day. Then it was every other day. Now I'm lucky if I can find 30 minutes a week in which to get funky. - Homer Simpson

Arrrr, mateys! Ye needs ta be preparin' yerselves fer Talk Like a Pirate Day!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top