<error>Extension not found or permission denied</error>
I've checked permissions on the 'restExtensions.config' file after upload, and it seems to have the same permissions as all other files in the config folder.
Okay, now this is odd. I changed the path to the assembly from
/bin/MyBaseAssembly
to
/MyBaseAssembly
And it now works fine. The assembly IS in the bin folder and is not in the site root. I tried this on a different installation running 4.5.1 and got the exact same thing. Is it a 4.5.x change which automatically assumes the assembly value to be precursed by /bin?
Base error: Extension not found or permission denied
Hi all,
I'm trying to get a simple HelloWorld base implementation working. I have the following class and config code:
But when I call the URL: http://www.mydomain.com/base/Sample/HelloWorld.aspx I just get an error:
I've checked permissions on the 'restExtensions.config' file after upload, and it seems to have the same permissions as all other files in the config folder.
Can anyone see why this is failing?
Okay, now this is odd. I changed the path to the assembly from
/bin/MyBaseAssembly
to
/MyBaseAssembly
And it now works fine. The assembly IS in the bin folder and is not in the site root. I tried this on a different installation running 4.5.1 and got the exact same thing. Is it a 4.5.x change which automatically assumes the assembly value to be precursed by /bin?
Hey Dan,
Your findings are correct, as of 4.5.x you no longer need the /bin/ at the begining.
Matt
THanks ) it helps me )) Just:
MyBaseAssembly
is working on a reply...