简体   繁体   中英

Remote access to C# Application (Win) best approach?

Would it be better to make some sort of internal Webserver and do it all over HTTP or to make the app to read remote files ? .. can't explain it better than this right now.

Got any good link's about this, please post :)

As michalczerwinski said, it's better to use some kind of network-based interface.

If you don't want to use IIS, you can make self-hosted application with WCF service: http://msdn.microsoft.com/en-us/library/ms731758.aspx

Using remote files to stear the external application is not the best approach: it will introduce the delay and it's far from being efficient. Any network-based interface would be better. I would go with Remoting or WCF to host some simple interfaces, it might be via HTTP.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM