0
votes
0answers
11 views
Security policy differences between Outlook AddIn 2003 and 2007
I have written a managed AddIn for Outlook 2007, and am now tasked with porting it to 2003.
The addin downloads DLLs into the local user profile folder, then reflectively loads the …
0
votes
0answers
11 views
.net 4.0 with Code Access Security NetFx40_LegacySecurityPolicy won’t work
Hi-
I'm trying to use an external library DevExpress.XtraTreeList.v8.1.dll in my vsto office addin built using VS2010 beta 2. I am getting the following compile time error:
Dev …
36
votes
9answers
547 views
Is “Code Access Security” of any real world use?
I am in the process of studying for the 70-536 .NET Framework - Application Development Foundation Exam, as I have been programming .net for many years, this should not be hard!
H …
0
votes
1answer
27 views
Why is CAS demo code running in localhost (127.0.0.1) not recognizing security zones?
I'm running the labs in MCTS 70-536 Training Kit chapter 11 about Code Access Security. I'm running XP Pro. The first lab creates an assembly which checks for different permissions …
3
votes
6answers
136 views
How to restrict to add an item to List<T> ?
I have Class called Person containing to properties, Father and List of Children.
I want every one to use only AddChild Method to add children, not the List.Add method ,
so how do …
0
votes
3answers
295 views
Code Access Security and Sharepoint WebParts
I've got a vague handle on how Code Access Security works in Sharepoint.
I have developed a custom webpart and setup a CAS policy in my Manifest
<CodeAccessSecurity>
<P …
2
votes
2answers
58 views
Is making my clickonce app partial-trust worth it?
I'm about to start working on a ClickOnce app targeted at internal customers for use on the organization's intranet. I want to ease the setup process, so I thought that developing …
1
vote
1answer
48 views
Declaring FileIOPermission on special folders
I have read over the documentation, scoured the interwebs, and it seems what I want to do cannot be done without writing a custom CAS permission. So, here's my last ditch attempt.
…
0
votes
1answer
43 views
.Net security Unrestricted permission issue
Hello everyone,
I am confused about what does the Unrestricted property of .Net security, as mentioned here, http://msdn.microsoft.com/en-us/library/system.security.permissions.se …
1
vote
1answer
42 views
SecurityAttribute.Unrestricted issue
Hello everyone,
I am confused about this property, as mentioned here, http://msdn.microsoft.com/en-us/library/system.security.permissions.securityattribute.unrestricted.aspx we co …
1
vote
3answers
96 views
Calling Marshal.GetHRForException in a partial trust environment (SecurityPermission)
I have some IO code that reads a stream within a try..catch. It catches IOException and calls System.Runtime.InteropServices.Marshal.GetHRForException()
within the catch, in an at …
1
vote
2answers
222 views
what does this security warning mean (.Net Process class)?
Hello everyone,
I am using VSTS 2008 + .Net 2.0 + C#. And I am running Code Analysis after build. I got the following confusing security warning. Here is the warning and related c …
1
vote
1answer
92 views
How can I flash the taskbar from a partial trust .net application ?
I'd like to flash the taskbar (as described here for example), but I can't pinvoke FlashWindowEx (or anything else, for that matter) in the security context my application is runni …
0
votes
1answer
74 views
Why is this Code Access Security example broken?
I know that CAS is of limited value, but I want to learn about it anyway.
I don't understand the behavior I'm seeing: Basic default CAS seems not to work at all in my fairly norma …
0
votes
1answer
80 views
Declarative security demands - Is SecurityAction.Demand cached ??
Hi
I am having a trouble during impersonating a user. I have a method declared like this:
[PrincipalPermission(SecurityAction.Demand, Name=@"DJPITER-PC\Test", Role="LocalTestGrou …
