Click here to Skip to main content
15,891,864 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am stucking with this issue on production server .
"Server was unable to process request. ---> Requested registry access is not allowed. " could you please give me solution how I can resolve it.
Thanks,
Vinay
Posted

There are things that you can do in the web dev, F5 because it does not have any restrictions.

But when you run in a production environment, you website runs in a protective bubble, which is your virtual folder, or the application folder. Your not suppose to be able to access things like the registry, or any parts of the operating system. This is by design to protect the OS.

Now takes Windows 7, and let's say a c++ program. It runs in a bubble as well, and can only access certain folders and files, unless you elevate your permissions to level 2. This is also by design to protect the OS.

So learn how to design apps that work within the security bubble, so that they work correctly. You can find a loop hole today, but that loop hole will be closed as soon as it's discovered.
 
Share this answer
 
Don't access the registry from your website. It's a security-risk.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900