Home All Groups Group Topic Archive Search About

CreateInstance security violation

Author
24 Jan 2006 10:00 AM
guy
i have some code that worked fine that has now been moved out to a separate
assembly, (simplifeid below)

    Dim asm As System.Reflection.Assembly =
System.Reflection.Assembly.GetAssembly(OwningMainForm.GetType)
    Dim o As Object = asm.CreateInstance(frm, True)

and i now get a system.security.ipermission exception:-
"Request for the permission of type
'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."

anyone know how i can get round this? (the assembly and frm are both correct)

*guy*

Author
29 Mar 2006 2:46 PM
Ronin
Don't quote me on this... ... that folder where the solution is newly located
might not be set up in the .NetFramework configuration with in that machine.


best luck to you though.



Ronin

Show quoteHide quote
"guy" wrote:

> i have some code that worked fine that has now been moved out to a separate
> assembly, (simplifeid below)
>
>     Dim asm As System.Reflection.Assembly =
> System.Reflection.Assembly.GetAssembly(OwningMainForm.GetType)
>     Dim o As Object = asm.CreateInstance(frm, True)
>
> and i now get a system.security.ipermission exception:-
> "Request for the permission of type
> 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0,
> Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."
>
> anyone know how i can get round this? (the assembly and frm are both correct)
>
> *guy*