Tagged Questions

0
votes
0answers
29 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 …
0
votes
1answer
48 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 …
3
votes
1answer
52 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 …
0
votes
0answers
74 views

Tool to determine an assembly’s trust level in .NET?

Is there a tool to indicate what kind of trust level it has?
0
votes
0answers
112 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 …
1
vote
2answers
70 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
5answers
126 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
173 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 …