Partial trust is a .NET security model in which application code executes with reduced permissions as a measure of protecting the local system from malicious use.
0
votes
1answer
13 views
Check for full trust
How do I check if my code is running in full trust mode? I have seen several suggestions to check for specific permissions using SecurityManager.IsGranted() method, but I specifically want to check ...
1
vote
1answer
21 views
WIF 4.5 and partial-trust environments
Is WIF 4.5 supported in a partial-trust environment? I have a WCF service that uses it and when deployed to a medium-trust environment the following error is occurring:
An error occurred creating ...
0
votes
0answers
197 views
System.Security.SecurityException: That assembly does not allow partially trusted callers
I have added Requiredif attribute in my mvc application and for that I added dynamic assembly and its working fine on my localhost but when i uploaded on server it gives me below error, so i was ...
0
votes
0answers
324 views
Reload root web.config without restaring IIS
My app is being moved from a server running IIS6 to a server running IIS7.5.
The new server defaults to Medium Trust. As this is a shared server and I am consuming some third-party assemblies, I ...
1
vote
1answer
182 views
Delphi 5 Unknown Publisher Version Info
I build a number of executable applications in Delphi 5 which talk to databases over a network. On my Windows 7 PC and other PCs they run without any warning but on some client PCs it gives an ...
2
votes
1answer
200 views
Is System.Web.Caching.Cache expected to work in sandbox?
I'm trying to run a piece of code in a sandbox. It failed and the problem comes from the part of the code where cache is used.
Case where it works as expected:
public void Demo()
{
// Verify ...
2
votes
2answers
2k views
MySql.Data in GAC, still SecurityException
I have a problem with MySql.Data in a partial trusted environment.
I've added MySql.Data to the GAC (by installing it with the MSI from the mysql.com site). As you can see here:
>gacutil /l | ...
0
votes
1answer
109 views
XBAP - Can I grant full trust only for specific methods?
I'm considering using XBAP for an intranet application and I'd like to avoid setting the entire application to Full Trust.
Essentially, I have a few method calls that I'll need to make that will ...
0
votes
1answer
91 views
NGen for partial trust application
I have a .Net 4.0 application that I need to improve the performance of code running in a partial trust environment. Specifically, I would like to eliminate the need to JIT at runtime. Normally this ...
2
votes
3answers
216 views
Why can't I subscribe to an event in a partial-trust AppDomain?
In my default (full-trust) AppDomain I want to create a sandbox AppDomain and subscribe to an event in it:
class Domain : MarshalByRefObject
{
public event Action TestEvent;
}
Domain domain = ...
0
votes
1answer
494 views
Can I use SQL Server CE in a medium trust environment by just deploying the DLLs
I've written an ASP.NET 4.0 application that is using a SQL Server CE 4.0 database. This is all working on my development environment using Medium Trust (same trust config as the hoster). On this ...
2
votes
1answer
144 views
Windows Server AppFabric Caching
I'm currently working on a ASP.NET MVC site where we have to run in partial trust.
Now I'm facing a problem with connecting to AppFabric when in High Trust. No problems when running in full trust. ...
0
votes
1answer
361 views
Partial/Full Trust mode verification in Asp .Net 4.0
I found the similar question on Msdn's forum but without answer (you can check it here)
.Net 4.0 came with obsolete method
IsUnderHighTrust = SecurityManager.IsGranted(
new ...
7
votes
2answers
373 views
ASP.NET Varying Trust Level Per-Page by Assembly?
I have two web applications (pre-compiled sites), one is first-party and will run at full trust. Another is third-party and should run at partial trust (or with specific permissions).
...
2
votes
2answers
472 views
Partial trust: How to instantiate a generic type without a generic type argument
I'm creating a reusable library for Silverlight. The library contains an internal generic type and I need to create a new instance of this generic type, but I at one point I don't have a generic type ...
1
vote
1answer
1k views
Partial Trust JavaScript Object Access in XBAP via HostScript: SecurityException in Callbacks
I've encountered a problem with the XBAP Script Interop feature that was added in WPF 4. It involves a combination of the following:
Accessing members of a script object from .NET
Running .NET code ...
3
votes
1answer
258 views
Running MSTest in partial trust from within Visual Studio
I like to be able to run MSTest in partial trust. This would allow me to configure what the code, that my unit tests call, can and can't do.
The problem I'm trying to solve is to let my automated ...
1
vote
2answers
266 views
ASP.NET MVC 2, Ninject and partial trust hosting
I'm reading a book about ASP.NET MVC 2, and when I read about how it uses reflection to figure out parameters or how to use Ninject in order to introduce a loosely coupled model I wonder... will this ...
4
votes
2answers
538 views
Is it possible to use Silverlight RiaServices without IIS?
I want to use silverlight as my windows service interface. For that, I'm using a custom web server to provide the xap file and it works fine.
Now I want to use RiaServices, but of course I there is ...
8
votes
2answers
5k views
That assembly does not allow partially trusted callers. InitializeComponent()
Scenario: I am in the process of refactoring one of our applications to use Nhibernate and came across this issue a couple weeks back. The issue was originally with Nhibernate and Castle and to solve ...
1
vote
1answer
478 views
Compiling Castle.ActiveRecord to allow partial trust?
How can I build Castle.Core, Castle.ActiveRecord and NHibernate to allow partial trust? There are plenty of resources on the web showing how this can be done, however every site I found says to use ...
2
votes
1answer
1k views
NPOI dll (third party excel writer dll)…System.Security.SecurityException: That assembly does not allow partially trusted callers
I had developed portal on Asp.net mvc framework.I had hosted this site at godaddy hosting.I had a great problem on integrating third party dll i.e. NPOI (excel writer dll).It dispaly following error.
...
0
votes
1answer
185 views
does elevated trust in silverlight4 also gives elevation in MAC OS
Silverlight4 provides an option to run at elevated trust
http://www.silverlightshow.net/items/Silverlight-4-elevated-permissions.aspx
Does anyone know if it also provides certain degree of elevation ...
0
votes
1answer
856 views
WPF Web (xbap) using WCF Service throws System.Net.webPermission exception
I have an xbap application running with partial trust on my local machine's IIS 7.5. I published the WCF service to the same directery as the xbap.
After jumping through some hoops I could get it ...
3
votes
1answer
16k views
Assembly does not allow partially trusted caller
How do I change my library to allow partially trusted callers?
I get the following error:
Server Error in '/' Application.
Security Exception
Description: The application attempted
...
0
votes
1answer
166 views
Identify if ClickOnce application is running in partial-trust mode (.NET)
Is there any way of identifying (at run time) if my application is running in partial-trust mode or not? I'm considering deploying two versions of my ClickOnce application - one full trust and the ...
2
votes
1answer
3k 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
0answers
80 views
Assembly demands unrestricted permissions… why?
Running permcalc on my assembly and its dependencies gives me the following for many methods:
<Method Sig="instance class MembershipUser GetUser(string , bool )">
<Demand>
...
2
votes
1answer
474 views
How to save a picture from a partial trust XBAP app?
I have an XBAP app, which shows some pictures, and my users would like to save some of them to disk. But my XBAP app runs in the partial trust mode, so it can't initiate SaveFileDialog, not to mention ...
2
votes
1answer
392 views
Is it possible to run a stand-alone WPF application (non XBAP) in Partial Trust?
I thought if I do not use anything beyond simple graphic in a window, I would be able to run a stand-alone WPF application in Partial Trust (at least on Intranet). But unfortunately, even simplest ...
1
vote
2answers
425 views
Entity Framework in Partial trust environment
I know that Entity Framework supports Partial trust, I personally blogged about that
It was working fine, I tested it and it was fine. Now if you download the samples attached to my post about the ...
1
vote
3answers
695 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 attempt to take ...
0
votes
2answers
232 views
How to detect which assemblies require the Partially Trusted Callers Attribute?
I have downloaded a web project from CodePlex and am getting the following error in Application_Start:
System.Security.SecurityException:
That assembly does not allow partially
trusted ...
0
votes
2answers
204 views
Collections in DataContracts in partial trust scenarios
I've been pretty confused on one point in design of DataContracts for serialization.
Say I have an object (e.g. a Customer) and it exposes a collection property (e.g. an AddressCollection named ...
1
vote
1answer
201 views
How can I flash the taskbar from a partial trusted .NET application?
I'd like to flash the taskbar (as described here for example), but I can't P/Invoke FlashWindowEx (or anything else, for that matter) in the security context my application is running in.
Is there ...
2
votes
2answers
280 views
How can I access my assembly version number in a partial trust environment (no FileIOPermission)
I'm trying to access the Version number of my assembly at runtime.
The code I'm using for that requires a FileIOPermission, which I don't want to grant (I'm in the Internet Zone)
...
2
votes
2answers
6k views
How can I use the system.net section of my app.config in a partial trust environment?
I've a WCF application deployed using clickonce.
It connects to my server using https, and everything works fine
I use the default proxy when needed thanks to the following code:
...