deployment - C# Application over a Network -


I have run in some cases, where I want to apply an application on one server (C #, .NET 2.0) And users need to test the application on the network. I have come to know that works out of any hit other than a warning, which tells you "Is it going on your network? Are you sure you want to do this?":

 % systemroot% Microsoft.NET \ Framework \ v2.0.50727 \ caspol -m -cg 1.2-curl \\ & lt; Path & gt; Full Trust  

Is there a better way to centralize the application instead?

The problem with providing fulltrust is that. If your app has any kind of identity / security control, then the trusting trust will bypass it all.

I guess otherwise, you are exposing your machine to "files running the other," so that they can potentially damage, though it does not allow any other native Win32 running on the remote machine Not much worse than the executable, so there is no big deal of IMHO.

The best solution I suggest is just to install the app. You can use some click-ons to make your user's machines painless and easy for them.


Comments