64bit asp .Net web app

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
 
B

bruce barker

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)
 
G

Guest

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top