views:

98

answers:

1

I am using Entity Framework in an application i am working on, however when i try to launch it from another user's machine, while trying to load the EDM i get an Exception stating that the request for the AspNetHostingPermission has failed. The assemblies are located on a network share.

The assemblies are not signed and as far as i know, since 3.5 SP1, assemblies on network shares run under full trust. What is going wrong?

EDIT: It seems this is a general trust issue, considering that i also got an error about ReflectionPermission.

+2  A: 

This is definitely a trust issue. Other people have reported the same error when running from a network share.

Jose Basilio
Yes, i think so, too. But i thought that one of the changes of 3.5 SP1 was, that apps running from network shares are full trust? That's what confuses me.
Botz3000
I set the network share to full trust. i guess it's ok that way.
Botz3000