active questions tagged medium-trust - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T11:13:08Zhttp://stackoverflow.com/feeds/tag/medium-trusthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848342/allowing-partially-trusted-callers-security-exception-is-been-thrown-althought-ru0Allowing partially trusted callers security exception is been thrown althought running on Full trust modeTal2009-12-04T17:05:09Z2009-12-06T12:07:20Z
<p>Hey,</p>
<p>While developing using ASP.net 2.0 (C#) and NHibernate 2.1.0
I am getting the error:</p>
<pre><code>System.TypeInitializationException: The type initializer for 'NHibernate.ByteCode.LinFu.ProxyFactory' threw an exception. ---> System.Security.SecurityException: That assembly does not allow partially trusted callers.
</code></pre>
<p>This error is been thrown <strong>only</strong> in the production server (a web hosting company) and in my development environment everything is fine.</p>
<p>I also ran this code below on the production server to see the Code Access Security (CAS) level and got <strong>True</strong> from:</p>
<pre><code>System.Security.SecurityManager.IsGranted(new AspNetHostingPermission(AspNetHostingPermissionLevel.Unrestricted))
</code></pre>
<p>so I can assume I am currently running in a full trusted mode..</p>
<p>After reading some articles about this kind of problem (not specifically for NHibernate)
I understood that I need to add</p>
<pre><code>[assembly: AllowPartiallyTrustedCallers()]
</code></pre>
<p>to my AssebmlyInfo.cs file.</p>
<p>My question is:
Is there a way to solve this exception without having to edit the <strong>NHibernate.ByteCode.LinFu.dll</strong>'s AssmeblyInfo.cs ? Is there something that can be configured in the web.config to allow this kind of action?</p>
<p>Thanks,</p>
<p>Tal.</p>
http://stackoverflow.com/questions/1840853/nhibernate-operation-could-destabilize-the-runtime0nhibernate Operation could destabilize the runtime.mrblah2009-12-03T15:56:18Z2009-12-04T14:43:31Z
<p>Locally my site works, but at host I am getting the error:</p>
<p>"Operation could destabilize the runtime."</p>
<p>I am using nhibernate.
I am using the repository pattern.</p>
<pre><code>[VerificationException: Operation could destabilize the runtime.]
CategoryProxy..ctor() +6
[TargetInvocationException: Exception has been thrown by the target of an invocation.]
System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck) +0
System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache) +86
System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache) +230
System.Activator.CreateInstance(Type type, Boolean nonPublic) +67
LinFu.DynamicProxy.ProxyFactory.CreateProxy(Type instanceType, IInterceptor interceptor, Type[] baseInterfaces) +20
NHibernate.ByteCode.LinFu.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +208
[HibernateException: Creating a proxy instance failed]
NHibernate.ByteCode.LinFu.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +306
</code></pre>
http://stackoverflow.com/questions/1830846/nhibernate-on-medium-trust-and-godaddy-hosting0Nhibernate on medium trust and godaddy hosting [closed]Pankaj2009-12-02T05:36:29Z2009-12-04T08:13:52Z
<p>Hello All</p>
<p>I have recently used Nhibernate on medium trust and host my website on godaddy hosting. I am sharing my experience to handle this problem on stackoverflow.</p>
<p>Problem:- Nhibernate used reflection and dynamic method in internal level so it is hard to run Nhibernate on medium trust. Godaddy shared hosting provide medium trust.</p>
<p>Solution:- First of all in your web.config </p>
<ol>
<li><p>Add 'requirePermission="false"' to your nHibernate configuration section in your web.config file.</p>
<p><strong>section name="nhibernate" requirePermission="false" type="System.Configuration.NameValueSectionHandler, System,Version=1.0.5000.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" /</strong></p></li>
<li><p>Disable the Reflection Optimizer.Again a simple configuration change.</p></li>
</ol>
<p>With in <strong>nhibernate</strong> section set</p>
<pre><code>**add key="hibernate.use_reflection_optimizer" value="False" /**
</code></pre>
<p>3.Disable all lazy loading of entities</p>
<p>class name="ABC" table="ABC" lazy="false"</p>
<p>Lazy loading requires the generation of 'proxy' classes that delay the retrieval of associated entities from the data store until they are actually accessed in code. </p>
http://stackoverflow.com/questions/1837161/lucene-net-in-medium-trust0Lucene.NET in medium trustSwami2009-12-03T01:48:57Z2009-12-03T02:20:51Z
<p>Does know how to make Lucene .NET 2.3.2 run in a medium trust environment? GoDaddy doesn't like it the way it is.</p>
http://stackoverflow.com/questions/689300/net-hosting-flexable-medium-trust1.Net Hosting (Flexable Medium Trust)Dan2009-03-27T10:56:46Z2009-12-02T20:59:26Z
<p>Any recommendations for cheap .Net hosting that has flexible medium trust rules allowing the use of reflection?</p>
http://stackoverflow.com/questions/710903/nhibernate-2-fluent-nhibernate-medium-trust3NHibernate 2 + Fluent Nhibernate medium trustDan2009-04-02T18:06:38Z2009-12-01T21:20:09Z
<p>Will NHibernate 2 and\or Fluent Nhibernate work in a medium trust environment. If not are there any work-arounds?</p>
http://stackoverflow.com/questions/1810884/how-to-mimick-medium-trust0How to mimick medium trust?mrblah2009-11-27T22:48:53Z2009-11-28T18:32:46Z
<p>Is it possible to change my local dev environment (preferrably just a single IIS site) to work under medium trust?</p>
http://stackoverflow.com/questions/947633/asp-net-using-twitterizer-in-medium-trust1ASP.NET Using Twitterizer in Medium TrustJason2009-06-03T22:36:35Z2009-11-27T12:00:44Z
<p>Does anyone using the <a href="http://code.google.com/p/twitterizer/" rel="nofollow">Twitterizer</a> framework have any experience running it in a Medium Trust environment? I keep getting security exceptions...</p>
<blockquote>
<p>Security Exception<br />
Description: The
application attempted to perform an
operation not allowed by the security
policy. To grant this application the
required permission please contact
your system administrator or change
the application's trust level in the
configuration file. </p>
<p>Exception Details:
System.Security.SecurityException:
That assembly does not allow partially
trusted callers.</p>
</blockquote>
http://stackoverflow.com/questions/1670895/how-can-i-narrow-down-which-call-is-making-a-fully-trusted-call1How can I narrow down which call is making a fully trusted call?mrblah2009-11-03T23:47:20Z2009-11-26T14:57:39Z
<p>My host only allows medium trusted web applications.</p>
<p>I am getting this error:</p>
<pre><code>Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers.
</code></pre>
<p>I have the code, what should I change?
I read I can add a attribute in each file: [assembly:AllowPartiallyTrustedCallers]
but my solution has tons of files, is there a faster way to do this? (a single global change?)</p>
<p><strong>I wish I could narrow down which method or include namespace that is causing the issue.</strong>
I don't even know if this assembly is signed or not.</p>
http://stackoverflow.com/questions/987332/how-to-automate-testing-of-medium-trust-code3How to Automate Testing of Medium Trust CodeIan Davis2009-06-12T15:33:20Z2009-11-25T23:37:59Z
<p>I would like to write automated tests that run in medium trust and fail if they require full trust. </p>
<p>I am writing a library where some functionality is only available in full trust scenarios and I want to verify that the code I wish to run in medium trust will work fine. If also want to know that if I change a class that requires full trust, that my tests will fail.</p>
<p>I have tried creating another AppDomain and loading the medium trust PolicyLevel, but I always get an error with assembly or its dependency could not be loaded while trying to run the cross AppDomain callback.</p>
<p>Is there a way to pull this off?</p>
<p><strong>UPDATE</strong>: Based replies, here is what I have. Note that your class being tested must extend MarshalByRefObject. This is very limiting, but I don't see a way around it.</p>
<pre><code>
using System;
using System.Reflection;
using System.Security;
using System.Security.Permissions;
using Xunit;
namespace PartialTrustTest
{
[Serializable]
public class ClassUnderTest : MarshalByRefObject
{
public void PartialTrustSuccess()
{
Console.WriteLine( "partial trust success #1" );
}
public void PartialTrustFailure()
{
FieldInfo fi = typeof (Int32).GetField( "m_value", BindingFlags.Instance | BindingFlags.NonPublic );
object value = fi.GetValue( 1 );
Console.WriteLine( "value: {0}", value );
}
}
public class Test
{
[Fact]
public void MediumTrustWithExternalClass()
{
// ClassUnderTest must extend MarshalByRefObject
var classUnderTest = MediumTrustContext.Create<ClassUnderTest>();
classUnderTest.PartialTrustSuccess();
Assert.Throws<FieldAccessException>( classUnderTest.PartialTrustFailure );
}
}
internal static class MediumTrustContext
{
public static T Create<T>()
{
AppDomain appDomain = CreatePartialTrustDomain();
var t = (T) appDomain.CreateInstanceAndUnwrap( typeof (T).Assembly.FullName, typeof (T).FullName );
return t;
}
public static AppDomain CreatePartialTrustDomain()
{
var setup = new AppDomainSetup {ApplicationBase = AppDomain.CurrentDomain.BaseDirectory};
var permissions = new PermissionSet( null );
permissions.AddPermission( new SecurityPermission( SecurityPermissionFlag.Execution ) );
permissions.AddPermission( new ReflectionPermission( ReflectionPermissionFlag.RestrictedMemberAccess ) );
return AppDomain.CreateDomain( "Partial Trust AppDomain: " + DateTime.Now.Ticks, null, setup, permissions );
}
}
}</code></pre>
http://stackoverflow.com/questions/1467384/asp-net-application-trust-medium-file-io-outside-virtual-directory0ASP.Net Application Trust Medium File IO Outside Virtual DirectoryTrey Gramann2009-09-23T17:08:36Z2009-11-13T09:56:50Z
<p>I am trying to determine how suicidal this is...</p>
<p>I have a hosting environment where a custom ASP.Net CMS application needs to access the files in the root folder of a website even though it is in a virtual folder so it can be shared accross many sites. I can modify the Medium trust on the server and came up with this...</p>
<pre><code><IPermission class="FileIOPermission" version="1"
Read="$AppDir$;$AppDir$\.."
Write="$AppDir$;$AppDir$\.."
Append="$AppDir$;$AppDir$\.."
PathDiscovery="$AppDir$;$AppDir$\.."/>
</code></pre>
<p>Oddly enough, it works. Yes, I understand it is doing this for all the Apps.</p>
<p>I am a bit at a loss as to easy ways to test what else is being exposed. Feels dangerous. Opinions?</p>
http://stackoverflow.com/questions/1684599/asp-net-pdf-component-in-medium-trust0ASP.NET - PDF Component in Medium TrustNathan Taylor2009-11-06T00:22:01Z2009-11-07T00:01:34Z
<p>Can anyone recommend some ASP.NET-compatible PDF Components that work in a medium trust environment? I read that <a href="http://sourceforge.net/projects/itextsharp/" rel="nofollow">ITextSharp</a> works well, but coming from <a href="http://www.websupergoo.com/abcpdf-1.htm" rel="nofollow">ABCPdf</a> and <a href="http://www.asppdf.com" rel="nofollow">ASPPdf</a>, the thought of compiling the entire PDF in code is very daunting. Ideally I'd like to use something like <a href="http://code.google.com/p/wkhtmltopdf/" rel="nofollow">wkhtmltopdf</a> to simply convert HTML pages to PDFs (but of course that doesn't work in medium trust).</p>
<p>As far as price is concerned: free is best, but paid solutions are not out of the question.</p>
<p>In the event I cannot find a decent option I may choose to just host a web service on a separate machine that I can run a fully trusted application on, but that is definitely not optimal.</p>
http://stackoverflow.com/questions/1670300/asp-net-1-0-website-that-is-getting-a-does-not-allow-partially-trusted-callers0asp.net 1.0 website that is getting a 'does not allow partially trusted callers' error during sendmail.mrblah2009-11-03T21:37:26Z2009-11-03T21:58:39Z
<p>I have an old asp.net 1.0 website that throws an error during the sending of email.</p>
<p>The error:</p>
<p>Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers.</p>
<p>Is there a way to fix this without recompiling or changing code?</p>
<p>host doesnt' allow fulltrust.</p>
http://stackoverflow.com/questions/1458465/graphs-in-asp-net-medium-trust0Graphs in ASP.NET Medium Trustpetrv2009-09-22T06:42:42Z2009-10-30T11:11:45Z
<p>I've tried to use MSChart and ZedGraph but they both require Full Trust. Are there any other graphing libraries that I could use in Medium Trust webhosting? I have to note that I have very low ASP.NET knowledge so far.</p>
<p>Thanks,
Petr</p>
<p><strong>EDIT:</strong> At the end, ZedGraph seems to be running well in Medium Trust. I just added the following line to AssemblyInfo.cs in the ZedGraph source code, recompiled and all is running OK:</p>
<pre><code>[assembly: AllowPartiallyTrustedCallers ]
</code></pre>
http://stackoverflow.com/questions/643970/rdlc-medium-trust0RDLC Medium Trustshootermcgavin2009-03-13T18:21:21Z2009-10-30T11:10:37Z
<p>Does anyone know of a free (for a non-profit group) RDLC reporting tool that will work under medium trust in IIS 7?</p>
http://stackoverflow.com/questions/1223286/reportviewer-control-and-a-medium-trust-server1ReportViewer Control and a Medium Trust ServerLeigh2009-08-03T16:30:10Z2009-10-30T11:10:10Z
<p>I have a couple of websites with the same hoster that have been setup with 2 different trust levels. One is 'Full' and the other is 'Medium'. I did not realise this because the hoster decided to implement a new security policy and not tell anyone. I only found out when I tried to use the ReportViewer control like I had on the other, older site. Now obviously I am getting the following error message:</p>
<blockquote>
<p>Security Exception</p>
<p>Description: The application attempted
to perform an operation not allowed by
the security policy. To grant this
application the required permission
please contact your system
administrator or change the
application's trust level in the
configuration file.</p>
<p>Exception Details:
System.Security.SecurityException:
That assembly does not allow partially
trusted callers.</p>
</blockquote>
<p>Now what I am wondering is there a way to use the ReportViewer control in a medium trust environment. I've tried reading about this on MSDN but to be honest trying to make head or tails out of Microsoft's documentation has never been something I could get to grips with.</p>
<p>Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/133109/asp-net-medium-trust-setup2ASP.Net Medium Trust setuprams2008-09-25T12:47:36Z2009-10-30T11:09:59Z
<p>I am trying to configure the IPermission node as part of medium trust. However I am unable to find the valid values list for the PathDiscovery attribute on the node</p>
<pre><code><IPermission class="FileIOPermission" version="1" Read="$AppDir$" Write="$AppDir$" Append="$AppDir$" PathDiscovery="$AppDir$"/>
</code></pre>
<p>I need to set the permission so that the account will be able to access all subdirectories under the main path. currently a .svc (WCF service file) throws a 404 error because the ASP.Net account is not able to get it from a sub-folder couple of levels deep. I am trying to avoid changing the node to</p>
<pre><code><IPermission class="FileIOPermission" version="1" Unrestricted="true"/>
</code></pre>
<p>Any ideas?</p>
<p>TIA</p>
http://stackoverflow.com/questions/1578529/how-to-prevent-invalidoperationexception-with-xmldatasource-in-medium-trust-for-t0How to prevent InvalidOperationException with XmlDataSource in medium trust for the same domainslimCODE2009-10-16T14:48:36Z2009-10-16T15:06:32Z
<p>I'm using an XmlDataSource to fetch an RSS feed <strong>on the same domain</strong>. Ever since my ISP moved to medium trust, that code is failing with a System.InvalidOperationException.</p>
<p>Is there a way to fix this?</p>
http://stackoverflow.com/questions/44795/how-can-i-determine-whether-a-given-date-is-in-daylight-saving-time-for-a-given-t3How can I determine whether a given date is in Daylight Saving Time for a given timezone in .NET 2.0?bdukes2008-09-04T21:11:43Z2009-10-09T20:14:12Z
<p>I'm on .NET 2.0, running under Medium Trust (so <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">TimeZoneInfo</a> and the Registry are not allowed options). I'm asking the user for two dates and a time zone, and would really love to be able to automatically determine whether I need to adjust the time zone for DST. </p>
<p>This probably isn't even a valid scenario unless I have some <em>very</em> robust support, a la <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">TimeZoneInfo</a>, to differentiate between all of the different varieties of Time Zones in the first place.</p>
http://stackoverflow.com/questions/1542883/trust-medium-in-asp-net-mvc0trust medium in asp.net mvcsantose2009-10-09T09:52:05Z2009-10-09T10:28:46Z
<p>When i try to run my project in trust medium or high it says </p>
<p>[PolicyException: Required permissions cannot be acquired.]</p>
<p>[FileLoadException: Could not load file or assembly </p>
<p>but i'm running all the assemblies in bin only.</p>
http://stackoverflow.com/questions/1510557/xmlserializer-under-medium-trust-bombs1XmlSerializer under Medium trust bombsNickLarsen2009-10-02T16:19:58Z2009-10-03T20:03:09Z
<p>I am having trouble using XmlSerializer with medium trust in my ASP.NET MVC 2 application. The stack trace is:</p>
<pre><code>[SecurityException: That assembly does not allow partially trusted callers.]
Bactum.PracticeTesting.MultipleChoiceQuestion.set_Prompt(String value) +0
Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderQuestionPool.Read3_MultipleChoiceQuestion(Boolean isNullable, Boolean checkType) +555
Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderQuestionPool.Read4_QuestionPoolSection(Boolean isNullable, Boolean checkType) +728
Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderQuestionPool.Read5_QuestionPool(Boolean isNullable, Boolean checkType) +726
Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderQuestionPool.Read6_QuestionPool() +79
</code></pre>
<p>The application is an asp.net mvc 2 presentation layer which calls my class library that serializes XML question pools to generate randomized practice tests. I took great care in designing the application to use the XmlSerializer in the System.Xml.Serialization namespace so I wouldn't have to write my own serializer and maintain it. In development on my local machine, this all worked fine, and when I published it to my GoDaddy host (windows economy), it generated the error above.</p>
<p>What have I tried? First I set up my local application to run in medium trust mode. Then I started googling and found that step 1 is to add</p>
<pre><code>[assembly: AllowPartiallyTrustedCallers]
</code></pre>
<p>to each of my assemblies, but the problem stuck around. Somewhere it was mentioned that you need to sign your assemblies, but I noticed no difference at all when I did. Do you actually need to sign your assemblies for this? </p>
<p>Does anyone have some insight as to why this problem only occurs under medium trust, or how to resolve my issue with XmlSerializer under medium trust? I do know that I could just write my own serializer, but since I took so much care to use the one included with .NET, I would like to avoid that solution if possible.
<hr />
@Haacked, @slf, Thank you very much for your help. The root of the problem is just as @slf mentioned: "the first attempt to serialize something will cause it to try to generate that assembly on the fly", and it turns out that assembly is not particularly all that friendly with medium trust. I was unable to figure out if your reason (probably on the server's temporary location) was correct or not, but the only other thing I could come up with is that the assembly created on the fly is not signed (though it does have the AllowPartiallyTrustedCallers attribute applied to it). I do not know if that is correct or not, but either way, prebaking the classes fixes it because it takes care of both problems at once.</p>
<p>sgen.exe: no thanks. This is more of a list of things to know when trying to use it than anything else, and solutions to all the small problems I ran into along the way. In order to use sgen, your assembly has to be signed, and the serialized assembly must have the same strong name key as the assembly with the types that are to be serialized. In order to specify this in command line, you use something like this:</p>
<pre><code>C:\my\current\directory>sgen MyAssembly.dll /c:"\"/keyfile:C:\path\to\same\key\as\MyAssembly.snk"\"
</code></pre>
<p>The backslash quotes are escape chars which are needed to make the call work, they are not just me messing up the SO code. There are a number of other arguments you can specify and you can see how to use them all <a href="http://msdn.microsoft.com/en-us/library/bk3w6240%28VS.80%29.aspx" rel="nofollow">here</a>, but this was all that was necessary to get me up and running. After this creates MyAssembly.XmlSerializers.dll, I had to reference the dll in my project. Without referencing it presentation layer, where the XmlSerializer is needed to instance my question pool, the XmlSerializer still wanted to create a new assembly. <strong>It would be nice if you only had to reference MyAssembly; if anyone knows how to make that possible I would love to know.</strong></p>
<p>At this point I was up and running, but had some questions and so I started playing with things. I found that after creating the serialization assembly I could recompile MyAssembly without a strong name and it worked just fine; the only thing that had to be strongly named was MyAssembly.XmlSerializers.dll. That aside, the next problem that happened was when I tried to publish to my local machine IIS7, where I now received a new error:</p>
<pre><code>[SecurityException: Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]
System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet) +0
System.Security.CodeAccessPermission.Demand() +54
System.Web.HttpRequest.MapPath(VirtualPath virtualPath, VirtualPath baseVirtualDir, Boolean allowCrossAppMapping) +419
System.Web.HttpServerUtility.MapPath(String path) +117
System.Web.HttpServerUtilityWrapper.MapPath(String path) +16
RocketClubs.Controllers.TestingController.NAR() in TestingController.cs:29
lambda_method(ExecutionScope , ControllerBase , Object[] ) +30
System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) +236
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +31
System.Web.Mvc.<>c__DisplayClassa.<InvokeActionMethodWithFilters>b__7() +85
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation) +309171
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodWithFilters(ControllerContext controllerContext, IList`1 filters, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +288
System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +309238
System.Web.Mvc.Controller.ExecuteCore() +174
System.Web.Mvc.MvcHandler.ProcessRequest(HttpContextBase httpContext) +209
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +599
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +171
</code></pre>
<p>Once again I am baffled, because my application works fine on the VS development server as well as my hosted website. Admittedly I don't know much about setting up IIS however, so its probably something to do with my setup.</p>
<p>The last thing about sgen is that it seems like a pain to run every time I make a change to my types, so I wanted to know how to go about setting it up to happen automatically, and possibly a way for MyAssembly to reference this new assembly each time. A quick browse on the topic landed me on <a href="http://stackoverflow.com/questions/134224/generating-an-xml-serialization-assembly-as-part-of-my-build">this SO question</a>, but I haven't had time to try it out yet.</p>
<p>Again, thanks for the help.</p>
http://stackoverflow.com/questions/1057315/db4o-running-in-asp-net-medium-trust-environment0db4o running in asp.net Medium Trust environmentbbqchickenrobot2009-06-29T09:04:46Z2009-09-22T15:00:06Z
<p>I am using the embedded client/server version of db4o (I called OpenServer() instead of OpenFile() method) so that I can host an asp.net website that will have several users reading and writing to the database simultaneously. The only issue is that the webhost that we use is a medium trust environment so it's throwing an error stating that the assembly doesn't support partially trusted callers... </p>
<p>Wondering if anyone has any suggestions on how to get this to work. Thanks! </p>
<p>:: UPDATE :: </p>
<p>I have recompiled the db4o dll with the [AllowPartiallyTrustedCallers] attribute and now I am getting the following specific error: </p>
<p>System.TypeInitializationException was unhandled by user code
Message="The type initializer for 'DataObjecten.db4oManager' threw an exception."
TypeName="DataObjecten.db4oManager"
InnerException: System.Security.SecurityException
Message="Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."
Source="Db4objects.Db4o"
StackTrace:
at Db4objects.Db4o.Internal.Platform4.AddShutDownHook(PartialObjectContainer container)
at Db4objects.Db4o.Internal.PartialObjectContainer.Initialize1(IConfiguration config)
at Db4objects.Db4o.Internal.PartialObjectContainer.Open()
at Db4objects.Db4o.Internal.IoAdaptedObjectContainer..ctor(IConfiguration config, String fileName)
at Db4objects.Db4o.Internal.ObjectContainerFactory.OpenObjectContainer(IConfiguration config, String databaseFileName)
at Db4objects.Db4o.Db4oFactory.OpenFile(IConfiguration config, String databaseFileName)
at Db4objects.Db4o.Db4oFactory.OpenServer(IConfiguration config, String databaseFileName, Int32 port, INativeSocketFactory socketFactory)
at Db4objects.Db4o.Db4oFactory.OpenServer(IConfiguration config, String databaseFileName, Int32 port)
at DataObjecten.db4oManager..cctor()
InnerException: </p>
http://stackoverflow.com/questions/1438336/subsonic-3-0-medium-trust-issue2Subsonic 3.0 Medium Trust IssueDoug2009-09-17T11:41:43Z2009-09-17T13:40:36Z
<p>Hi guys,</p>
<p>I'm having an issue with running Subsonic in medium trust and don't know if i'm querying wrong - if there is some part of subsonic 3.0.3 that doesn't like medium trust can someone tell me? Someone else posted somethin similar a while ago and there was no real reply on whether it did exist or not (the bug). Rob said it had been tested, while someone else said they still had to bug (<a href="http://stackoverflow.com/questions/1136164/subsonic-3-0-medium-trust">http://stackoverflow.com/questions/1136164/subsonic-3-0-medium-trust</a>)</p>
<p>i'm using a query that looks like this:</p>
<pre><code>List<Data.Blog> objBlogPosts = ((from blog in db.Blogs
orderby blog.blogID descending
select blog).Take(10).ToList());
</code></pre>
<p>and the error i'm getting is:</p>
<pre><code>System.MethodAccessException:
System.Runtime.CompilerServices.StrongBox`1..ctor(System.__Canon) --->
System.Security.SecurityException: Request failed.
at System.Security.CodeAccessSecurityEngine.ThrowSecurityException(Assembly asm, PermissionSet granted, PermissionSet refused, RuntimeMethodHandle rmh, SecurityAction action, Object demand, IPermission permThatFailed)
at System.Security.CodeAccessSecurityEngine.ThrowSecurityException(Object assemblyOrString, PermissionSet granted, PermissionSet refused, RuntimeMethodHandle rmh, SecurityAction action, Object demand, IPermission permThatFailed)
at System.Security.CodeAccessSecurityEngine.CheckSetHelper(PermissionSet grants, PermissionSet refused, PermissionSet demands, RuntimeMethodHandle rmh, Object assemblyOrString, SecurityAction action, Boolean throwException)
at System.Security.PermissionSetTriple.CheckSetDemand(PermissionSet demandSet, PermissionSet& alteredDemandset, RuntimeMethodHandle rmh)
at System.Security.PermissionListSet.CheckSetDemand(PermissionSet pset, RuntimeMethodHandle rmh)
at System.Security.PermissionListSet.DemandFlagsOrGrantSet(Int32 flags, PermissionSet grantSet)
at System.Threading.CompressedStack.DemandFlagsOrGrantSet(Int32 flags, PermissionSet grantSet)
at System.Security.CodeAccessSecurityEngine.ReflectionTargetDemandHelper(Int32 permission, PermissionSet targetGrant, CompressedStack securityContext)
at System.Security.CodeAccessSecurityEngine.ReflectionTargetDemandHelper(Int32 permission, PermissionSet targetGrant)
The action that failed was:
Demand
The type of the first permission that failed was:
System.Security.PermissionSet
The demand was for:
<PermissionSet class="System.Security.PermissionSet"
version="1"
Unrestricted="true"/>
</code></pre>
<p>Thanks in advance. Loving the new subsonic and lambda's etc, just having issues deploying to my first shared-host :(</p>
<p>cheers
Doug</p>
http://stackoverflow.com/questions/1369059/how-do-you-check-if-you-are-running-in-medium-trust-environment-in-net0How do you check if you are running in Medium Trust environment in .NET?Nick Berardi2009-09-02T17:23:23Z2009-09-02T18:09:24Z
<p>I am running a website on shared hosting at GoDaddy (not my choice, because it is always Medium Trust), and I have some advanced features that I would like to turn on if the application is run in High Trust. </p>
<p>So would like to know, if there is an way to check if at runtime if the application is running in Medium Trust environment in .NET?</p>
http://stackoverflow.com/questions/1358181/encrypt-and-save-the-asp-net-connectionstring-within-the-web-config-using-medium0Encrypt and Save the ASP.NET ConnectionString within the web.config using Medium Trust?Luke2009-08-31T16:15:00Z2009-09-01T04:38:07Z
<p>I have searched around Google and Stackoverflow but can't seen to come up with a solution for editing the web.config to encrypt and store a SQL Server connection string for an installation script. </p>
<p>The link at <a href="http://our.umbraco.org/forum/ourumb-dev-forum/bugs/3569-Acessing-the-webconfig-in-Medium-trust" rel="nofollow">Accessing the web.config in Medium trust</a> seems to suggest that the following code would work instead of OpenWebConfiguration, however this is not working on the local development server (running Medium Trust) or at Rackspace Cloud (formerly Mosso).</p>
<pre><code>String cfgpath = Server.MapPath(@"/web.config");
cfg = System.Configuration.ConfigurationManager.OpenExeConfiguration(cfgpath);
</code></pre>
<p>Rackspoace Cloud can be setup to save files using Impersonation, however I am still receiving the "An error occurred loading a configuration file: Request for the permission of type 'System.Security.Permissions.FileIOPermission" error when catching the ConfigurationErrorsException.</p>
<p>Any ideas how I can edit the web.config to encrypt and store the SQL Server connection string during the installation script?</p>
<p><strong>Update #1</strong> It seems both DpapiProtectedConfigurationProvider and RsaProtectedConfigurationProvider require FullTrust. Are there any other solutions to protect the Web.config file further when using MediumTrust?</p>
http://stackoverflow.com/questions/1315065/is-there-a-way-to-generateemit-code-at-runtime-in-medium-trust0Is there a way to generate(emit) code at runtime in medium trust?Cleiton2009-08-22T03:44:23Z2009-08-25T20:19:07Z
<p>I would like to know if there is something similar to CSharpCodeProvider, but it should work in ASP.NET Medium Trust, anyone knows a good one?</p>
<p><hr />
<strong>[EDIT 08-25-2009]</strong></p>
<p><strong>Why I want to do that?</strong></p>
<p>I was writing a simple tutorial about Link to Objects and I would like users could write some simple querys on a textbox, post it to server to see the results, something like "linqpad" does today. Is there a way to do that? or not... I will have to live with that?</p>
http://stackoverflow.com/questions/1306016/unable-to-upload-a-file-from-web-page-in-asp-net-3-5-web-application-running-in-m0Unable to upload a file from web page in ASP.NET 3.5 web application running in Medium TrustNahom Tijnam2009-08-20T12:55:16Z2009-08-20T13:26:17Z
<blockquote>
<h3>Possible Duplicate</h3>
<p><a href="http://stackoverflow.com/questions/977331/file-i-o-in-medium-trust">File I/O in medium trust?</a></p>
</blockquote>
<p>I get the following error when I try to upload a file from a web page: </p>
<p><strong>Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed</strong></p>
<p>The web application runs on ASP.NET Framework 3.5 under 'Medium Trust' trust level.</p>
<p>The source code that saves the file in to a sub folder of the web application is the following:</p>
<pre><code>Request.Files[myProfileImage.UniqueID].SaveAs(Server.MapPath("/images/test.gif"));
</code></pre>
<p>The code works fine in my development environment but gives the above error when hosted with GoDaddy shared Windows hosting.</p>
<p>Any clue how I could upload a file from a web page under Medium Trust? Thanks in advance. cheers.</p>
http://stackoverflow.com/questions/1161859/getting-log4net-to-work-under-medium-trust0Getting Log4Net to work under medium trust. Dan2009-07-21T21:28:07Z2009-08-13T14:50:40Z
<p>Is this possible? Or is there an alternate logging framework?</p>
<p>Iv tried the FileAppender, the SmptAppender and a AdoNetAppender. To no avail. </p>
http://stackoverflow.com/questions/847912/send-email-on-gmail-smtp-under-medium-trust1Send Email on GMail SMTP under medium trustMidhat2009-05-11T12:39:32Z2009-07-30T18:43:28Z
<p>Hi</p>
<p>I need to send an email from my app, which will be running under medium trust. My current email sending code that works fine under full trust throws SecurityException under medium trust</p>
<pre><code>[SecurityException: Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]
</code></pre>
<p>Examining my machine.config and allied files reveal that my SMTP access is restricted to Connect. </p>
<pre><code><SecurityClass Name="SmtpPermission" Description="System.Net.Mail.SmtpPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</code></pre>
<p>and</p>
<pre><code><IPermission class="SmtpPermission" version="1" Access="Connect"/>
</code></pre>
<p>According to MSDN, Connect allows request on port 25 only. But Gmail servers work on port 587. Any workarounds? suggestions?</p>
http://stackoverflow.com/questions/1193149/string-template-and-medium-trust-hosting0string template and medium trust hostingalexandros2009-07-28T10:06:15Z2009-07-28T13:05:38Z
<p>Hi</p>
<p>my problem is with string template and operating under medium trust that godaddy enforces. Has anyone had the same problem and what did you do?</p>
<p>Moving to another host is a solution so feel free to name one.
Modifying the code will be the last thing I want to do since it is mostly done and it will set me back some time.
I have read that recompiling is not an option in string template.
I can't think of anything else.</p>