Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created an ASP.NET MVC 1.0 application that works fine on my machine (running in vs 2008 web server). However, when I deploy it to my webhost (running in medium trust), I get the following exception on the first hit: could not find file or dependency System, Version 1.0.9.0. Looking at the stack trace, I saw target invocation exception, method not allowed exception (sorry I did not keep the original exception details). My webhost switched my trust level to full trust and it started working.

I thought ASP.Net MVC 1.0 was supposed to work in medium trust?

share|improve this question
Can you elaborate? What does the application do? write to files, just display data from a database? Do some logging, and what kind of logging? – Peter May 19 '09 at 14:57

1 Answer

ASP.Net MVC should indeed run in medium trust, it has been dscussed before on SO - e.g. http://stackoverflow.com/questions/791488/what-application-trust-level-is-need-for-asp-net-mvc-framework

Clearly your app is doing something which isn't happy in medium trust, can you reproduce and provide more details of the exception?

share|improve this answer
I tried to upload the default template mvc web project (which runs fine on my laptop even when I add <trust level="Medium" /> in the web.config) and I had the same error on my host. My project is also working on my laptop with <trust level="Medium" /> in the web.config. I will try to reproduce the exception to add the details to this post. Thank you. – Alexandre May 24 '09 at 23:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.