Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
171 views

Security issue with Azure

I need my application to run in FullTrust mode so I added this line to my web/config file: I also modified the .csdef filr to enableNativeCodeExecution. But when I want to run my application (which ...
4
votes
1answer
549 views

Do we need to install Intermediate Code Signing cert for full trust XBAP/ClickOnce app?

We are creating a Full-Trust XBAP application and it needs to be installed/executed remotely outside of the customer's domain. In order to accomplish this we have purchased a Thawte code-signing ...
2
votes
1answer
2k views

Partial Trust in WPF 4

I've started a new project in WPF 4 (.NET 4) and trying to see if I can run it in xbap mode. I need to run the application in Full Trust with the new mode made available in .NET 4 which asks the end ...
1
vote
1answer
331 views

Has .Net 4 ClickOnce made full trust XBAPs viable?

Here's my situation. I've just started a new job and I've inherited an application recently which is going to need a rewrite. I know what you're thinking but trust me,...this really IS one of those ...
1
vote
1answer
2k views

Grant FullTrust in trusted assembly called by partial trust assembly

imagine the following environment: an XBAP application running in partial trust mode (default behaviour; requiring Full Trust is not an option - but before you ask, if full trust is given to the XBAP, ...
1
vote
1answer
832 views

Security issue with FullTrust

I have a .NET2.0 assembly on a network share for everyone to access. I've enabled FullTrust on everyone's machine for LocalIntranetZone. However, on SOME machines (not all... that's the part that's ...
1
vote
3answers
209 views

Edit and run .NET projects from network shares

Since I run my stuff in a VM I like to save my data on shares on the host. But then running and debugging (web) applications and tests from within Visual Studio has problems. How can I configure ...
0
votes
0answers
175 views

XBAP, Fulltrust application security / trust exception

There are alot of settings in all the versions of IE & windows, that may cause problems for users attempting to run xbap applications, particulary in fulltrust mode. I seem to have gathered a ...
0
votes
1answer
121 views

Is it possible to sandbox an ASP.Net site on IIS7.5 without using Medium Trust?

Setting the .Net trust level to Medium on a site will ensure that no code can access files outside the application directory. I have an ASP.Net site that must run in Full Trust. I have configured my ...
0
votes
1answer
451 views

Satellite assemblies and FullTrust issues when .NET exe is on the network

I'm executing my .NET app from a network share. Since framework 3.5 SP1, and as explained here: http://blogs.msdn.com/shawnfa/archive/2008/05/12/fulltrust-on-the-localintranet.aspx, the main exe and ...
0
votes
5answers
264 views

Process Class and .NET security?

I am using the Process class in my application, right at the beginning of the static Main method. I am using the Process class to know if another instance of my application is currently running. If my ...
0
votes
1answer
361 views

How to stop CAS security demands from a FullTrust assembly

I have a FullTrust assembly, Assembly A, which calls a 3rd party component, Assembly B. Is there any way I can, via A.dll.config or in A's code, prevent any CAS demands from propagating up the stack ...