You create an XML Web service named MyService. You must ensure that this service meets the following URL authorization requirements:
Anonymous access must be disabled for MyService.
An authenticated user named User1 cannot access MyService.
All other authenticated users can access MyService.
You configure Internet Information Services (IIS) to meet these requirements. You now need to configure the authorization section in the Web.config file to properly authorize the users.
Which code segment should you use?
A.
<allow users=”*” />
<deny users=”User1″ />
B.
<allow users=”?” />
<deny users=”User1″ />
C.
<deny users=”*” />
<deny users=”User1″ />
<allow users=”?” />
D.
<deny users=”?” />
<deny users=”User1″ />
<allow users=”*” />