Security Permissions

  • Thread starter Thread starter Roger Cantillo
  • Start date Start date
R

Roger Cantillo

I'm trying to run an application from a remote location. I run into a
permissions problem when trying to access directories over the network. How
can I import the permissions of the domain user to the application?
 
Hi Roger,

The permissions of the domain user are applied to the assembly, because the
assembly is running in the context of the logged on user. However, certain
Microsoft .NET security policies are set up which disallow applications from
performing certain actions from remote sources (i.e. the Internet or the
Local Intranet). To do this, you must alter your .NET framework security
policies. The application can be found in your 'Administrative Tools'
folder, "Microsoft .NET Framework 1.x Configuration"

Load that and change the permissions applying to Local Intranet to full
trust. Your application should execute correctly.

--
HTH,
-- Tom Spink, Über Geek

Please respond to the newsgroup,
so all can benefit

" System.Reflection Master "

==== Converting to 2002 ====
Remove inline declarations
 
Back
Top