<loadFromRemoteSources> Element
Updated: April 2011
Specifies whether assemblies from remote sources should be granted full trust.
Note |
|---|
If you were directed to this topic because of an error message in the Visual Studio project error list or a build error, see How to: Use an Assembly from the Web in Visual Studio. |
<runtime> Element
<loadFromRemoteSources> Element
<loadFromRemoteSources enabled="true|false"/>
The following sections describe attributes, child elements, and parent elements.
Attributes
|
Attribute |
Description |
|---|---|
|
enabled |
Required attribute. Specifies whether an assembly that is loaded from remote sources should be granted full trust. |
enabled Attribute
|
Value |
Description |
|---|---|
|
false |
Do not grant full trust to applications from remote sources. This is the default. |
|
true |
Grant full trust to applications from remote sources. |
Child Elements
None.
Parent Elements
|
Element |
Description |
|---|---|
|
configuration |
The root element in every configuration file used by the common language runtime and .NET Framework applications. |
|
runtime |
Contains information about runtime initialization options. |
In the .NET Framework version 3.5 and earlier versions, if you loaded an assembly from a remote location, the assembly would run partially trusted with a grant set that depended on the zone in which it was loaded. For example, if you loaded an assembly from a Web site, it was loaded into the Internet zone and granted the Internet permission set. In other words, it executed in an Internet sandbox. If you try to run that assembly in the .NET Framework version 4, an exception is thrown; you must either explicitly create a sandbox for the assembly, or run it in full trust.
The <loadFromRemoteSources> element lets you specify that the assemblies that run partially trusted in earlier versions of the .NET Framework should be run fully trusted in the .NET Framework 4.
Note
|
|---|
|
If an application has been copied from the Web, it is flagged by Windows as being a Web application, even if it resides on the local computer. You can change that designation by changing the file properties, or you can use the <loadFromRemoteSources> element to grant the assembly full trust. |
The enabled attribute for this element is effective only when code access security (CAS) is disabled. By default, CAS policy is disabled in the .NET Framework 4 and later versions. If you set enabled to true, remote applications are granted full trust.
If <loadFromRemoteSources> enabled is not set to true, an exception is thrown under the following conditions:
-
The sandboxing behavior of the current domain is different from its behavior in the .NET Framework 3.5. This requires CAS policy to be disabled, and the current domain not to be sandboxed.
-
The assembly being loaded is not from the MyComputer zone.
Note
|
|---|
|
You may get a FileLoadException in a Windows Virtual PC application when you try to load a file from linked folders on the hosting computer. This error may also occur when you try to load a file from a folder linked over Remote Desktop Services (Terminal Services). To avoid the exception, set enabled to true. |
Setting the <loadFromRemoteSources> element to true prevents this exception from being thrown. It enables you to specify that you are not relying on the common language runtime to sandbox the loaded assemblies for security, and that they can be allowed to execute as full trust.
Important
|
|---|
|
If the assembly should not run in full trust, do not set this configuration element. Instead, create a sandboxed AppDomain in which to load the assembly. |
Configuration File
This element can be used only in the application configuration file. For more information, see the "Application Configuration Files" section in Configuration Files.
I am directed to go.microsoft.com/fwlink/?LinkId=155569 when I try and setup Expression 4.0 after installing .NET 4.0 (which it requires). What is the name of the config file in the setup package in which I need to edit: <loadFromRemoteSources enabled="true">
EDIT: I have recently created a file, Setup.exe.config, of type XML, with the following code: <configuration> <runtime> <loadFromRemoteSources enabled="true"/? </runtime> </configuration> and placed it into the same directory as Setup.exe, yet still get the same error code from Setup.exe.
Please assist.
Try to mount the ISO with a program like MagicIso
- 8/27/2010
- ExpressionUser
- 5/25/2011
- sonialr
- 5/25/2011
- sonialr
There should be a way to specify in the loadFromRemoteSources tag which URLs/IPs/Domains will be allowed to load assemblies with FULL trust. Also, there should be a way to exclude specific URLs/IPs/Domains from having full trust. Below is an example of how I think it should work:
<configuration>
<runtime>
<loadFromRemoteSources enabled="true" "https://my.company.com" />
<loadFromRemoteSources enabled="true" "https://192.168.0.*" />
<loadFromRemoteSources enabled="false" "*" />
</runtime>
</configuration>
So that any assemblies from my.company.com or IP 192.168.0.* will be loaded with full trust, but assemblies from all other locations will be given very little trust.
Best,
Shawn
- 5/17/2011
- Shawn Eary
Editing devenv.exe.config might result in creating a copy under
\Users\{%UserName%}\AppData\local\VirtualStore\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe.configleaving the original file untouched. This depends on your user settings.
It might help to open "VS 2010 as administrator" (or another XML-Editor of your choice),
edit devenv.exe.config, inserting the
<loadFromRemoteSources enabled=true />
tag, save the file and close.
This will edit the original file, not the virtualized copy.
Having done so referencing "remote" assemblies in your projects
should work
- 5/2/2011
- Christoph Basedau
- 5/2/2011
- Christoph Basedau
Providing documentation on how to fix a problem with no hint to where the fix goes is a pretty pathetic failure.
How about fixing this so people don't need to go to 3rd party websites to figure out the solution?
- 2/6/2011
- McCodeWriter
- 12/28/2010
- Chuck Berg - Station Casinos
potentially located under: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE(which, by the way, I had to grant security rights to myself to edit...)
Answer originally found at: http://stackoverflow.com/questions/1823339/error-building-visual-studio-2010-silverlight-4-projects-on-windows-7-with-xp-mod
- 10/30/2010
- weo2000
- 11/7/2010
- Thomas Lee
With help from this post http://blogs.msdn.com/b/shawnfa/archive/2009/06/08/more-implicit-uses-of-cas-policy-loadfromremotesources.aspx, I realized that this was not an assembly specific flag, but a process-wide flag. So I moved it from the test assembly I was using to the parent processes configuration, and it works!
Hope this helps everyone else with their problems.
- 9/29/2010
- boogady2000
- 6/20/2010
- charlierlee
- 8/30/2010
- Thomas Lee
