6
votes
2answers
505 views
What application trust level is need for ASP.NET MVC framework?
Hi, i am trying to deploy simple asp.net mvc frameworkd application in may shared hosting and i get erro like this:
Security Exception
Description: The application attempted to perform an operation …
6
votes
2answers
222 views
Simulating Shared Hosting Trust Levels
I want to simulate the trust levels of a shared hosting environment on my development machine so that there are no nasty surprises when I come to deploy my solution.
I added this my setting the …
6
votes
6answers
374 views
What are the most common, typical things to AVOID coding into my ASP.NET app in order for it to run under Medium Trust on a shared host?
What are the things that Medium Trust stops you from doing? For example, I've already learned that Medium Trust stops you from using System.IO.Path.GetTempPath(). What other things like that?
4
votes
1answer
234 views
Can I make a folder writeable in Medium trust?
My web app writes to several folders (logs, uploads, etc), and I've always set these permissions manually through my hosting provider.
I'd like to create a setup script that performs this on new …
3
votes
3answers
177 views
How to Automate Testing of Medium Trust Code
I would like to write automated tests that run in medium trust and fail if they require full trust.
I am writing a library where some functionality is only available in full trust scenarios and I …
3
votes
3answers
403 views
NHibernate 2 + Fluent Nhibernate medium trust
Will NHibernate 2 and\or Fluent Nhibernate work in a medium trust environment. If not are there any work-arounds?
3
votes
1answer
870 views
How to write to Web.Config in Medium Trust ?
Uploading my first decently sized web app to my shared host provided me with a fresh set of challenges, by which I mean, sleepless nights. The issue was that I had most certainly not developed my …
2
votes
1answer
126 views
Subsonic 3.0 Medium Trust Issue
Hi guys,
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? …
2
votes
4answers
695 views
Problems with MVC Controllers + Dependency Injection (Ninject) in medium trust
I want to use dependency injection in an medium trust environment. To that aim I picked Ninject as Iv been told its light weight. How do I set-up injection into the controllers?
When I tried to …
2
votes
1answer
333 views
How can I hook into the current FormsAuthenticationModule in a Medium Trust environment?
I've got an HttpModule in my application that hooks into the FormsAuthenticationModule's Authenticate event with the following code:
public void Init(HttpApplication context)
{
…
2
votes
1answer
181 views
Calling internal methods in Medium Trust
I have the requirement to call an internal method of a 3rd party object (I cannot make it public for example). I can do that via reflection. Unfortunately this does not work in ASP.NET Medium trust …
2
votes
1answer
203 views
ASP.Net Medium Trust setup
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
<IPermission …
2
votes
6answers
298 views
How can I determine whether a given date is in Daylight Saving Time for a given timezone in .NET 2.0?
I'm on .NET 2.0, running under Medium Trust (so TimeZoneInfo 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 …
1
vote
2answers
36 views
How can I narrow down which call is making a fully trusted call?
My host only allows medium trusted web applications.
I am getting this error:
Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers.
I have …
1
vote
4answers
106 views
XmlSerializer under Medium trust bombs
I am having trouble using XmlSerializer with medium trust in my ASP.NET MVC 2 application. The stack trace is:
[SecurityException: That assembly does not allow partially trusted callers.]
…
