WebConfigurationManager.GetSection in Medium Trust

R

Roger Martin

Is it possible for a medium trust web application to read the Membership
providers? The following throws a SecurityException:

MembershipSection membershipSection =
(MembershipSection)WebConfigurationManager.GetSection("system.web/membership");

I have custom sections in my web.config where I specify
requirePermission="false", which allows them to be read in medium trust, but
it does not seem possible to do this for the membership section. When I
attempt it, like putting the following at the top of web.config...

<section name="membership" type="System.Web.Configuration.MembershipSection,
System.Web" allowDefinition="MachineToApplication" requirePermission="false"
/>

....I get the error "There is a duplicate 'system.web/membership' section
defined". I understand it may be possible to get around this by editing the
machine-level web.config so that allowOverride="true", but this is not an
option in my case, as I am developing a web application for wide
distribution, and I do not want to require my users to edit the machine-level
web.config.

Thanks,
Roger Martin
Gallery Server Pro (http://www.galleryserverpro.com)
 
R

Roger Martin

Bump. I am an MSDN subscriber, and I am under the impression someone from
Microsoft will answer this within two business days, but that time has
passed. Am I misunderstanding something?

Thanks,
Roger
 
J

Juan T. Llibre

re:
!> Bump. I am an MSDN subscriber, and I am under the impression someone from
!> Microsoft will answer this within two business days, but that time has
!> passed. Am I misunderstanding something?

Did you register your posting address with MSDN ?
Unless you did, they have no way to assign priority to your question.




Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
 
R

Roger Martin

That may be the issue. Unfortunately, the web site is not working for
configuring the e-mail alias, so I had to create a support incident that may
take a few days to sort out. Meanwhile, if anyone can address the original
question, I sure would appreciate it!

Roger
 

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