开发者

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

开发者 https://www.devze.com 2023-03-31 19:19 出处:网络
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.

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 l开发者_C百科ink'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.

0

精彩评论

暂无评论...
验证码 换一张
取 消