64bit asp .Net web app

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I attempting to access a web application that contains a windows forms
control that is downloaded to the client. I configured code access security
using .NET Framework 2.0 configuration and everything works as expected when
using the 32 bit browser. However, when I attempt to use the 64 bit browser I
get a message that says that the control was unable to Assert
PermissionState. Are different tools needed to configure security for the 2.0
Framework when running under 64 bit?

Thanks,

Leslie
 
security settings are per clr. as the .net security tools can run 32 bit
or 64 bit, you need to be sure they are running in the correct mode.

if the test box has both 32 and 64 bit clrs, you need to run security
setting twice.

note: if you are using mmc.exe, use the /32 & /64 switches to control
which clr you are changing the settings for.

-- bruce (sqlwork.com)
 
That fixed it. Thanks!

bruce barker said:
security settings are per clr. as the .net security tools can run 32 bit
or 64 bit, you need to be sure they are running in the correct mode.

if the test box has both 32 and 64 bit clrs, you need to run security
setting twice.

note: if you are using mmc.exe, use the /32 & /64 switches to control
which clr you are changing the settings for.

-- bruce (sqlwork.com)
 
Back
Top