I am struggling hard with getting WCF service running on IIS on our server. After deployment I end up with an error message:

Security settings for this service require 'Anonymous' Authentication but it is not enabled for the IIS application that hosts this service.

I want to use Windows authentication and thus I have Anonymous access disabled. Also note that there is aspNetCompatibilityEnabled (if that makes any difference).

Here's my web.config:

<system.serviceModel>
	<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
	<bindings>
		<webHttpBinding>
			<binding name="default">
				<security mode="TransportCredentialOnly">
					<transport clientCredentialType="Windows" proxyCredentialType="Windows"/>
				</security>
			</binding>
		</webHttpBinding>
	</bindings>
	<behaviors>
		<endpointBehaviors>
			<behavior name="AspNetAjaxBehavior">
				<enableWebScript />
				<webHttp />
			</behavior>
		</endpointBehaviors>
		<serviceBehaviors>
			<behavior name="defaultServiceBehavior">
				<serviceMetadata httpGetEnabled="true" httpsGetEnabled="false" />
				<serviceDebug includeExceptionDetailInFaults="true" />
				<serviceAuthorization principalPermissionMode="UseWindowsGroups" />
			</behavior>
		</serviceBehaviors>
	</behaviors>
	<services>
		<service name="xxx.Web.Services.RequestService" behaviorConfiguration="defaultServiceBehavior">
			<endpoint behaviorConfiguration="AspNetAjaxBehavior" binding="webHttpBinding"
			 contract="xxx.Web.Services.IRequestService" bindingConfiguration="default">
			</endpoint>
			<endpoint address="mex" binding="mexHttpBinding" name="mex" contract="IMetadataExchange"></endpoint>
		</service>
	</services>
</system.serviceModel>

I have searched all over the internet with no luck. Any clues are greatly appreciated.

link|improve this question

2  
The question should identify which version of IIS it is using. – Ray Vernagus Jun 22 '09 at 12:20
The version was IIS 6.0 – Rashack Dec 7 '09 at 12:17
feedback

5 Answers

up vote 19 down vote accepted

So it seems like pretty common issue. The point is to remove mex from your bindings:

<endpoint address="mex" binding="mexHttpBinding" name="mex" contract="IMetadataExchange"></endpoint>

Alternativelly you enable Anonymous access in IIS and in your web.config you make sure anonymous access is denied.

Hope this will help to some other soul. (I was 100% sure I tried it with mex removed. :-O )

link|improve this answer
I ended up using your alternative. IIS anon + Windows with web.config denying all anonymous users. I'm hosting 3.5 WCF REST with asp.net. Thanks – Nathan May 28 '10 at 16:04
Actually, removing mex doesn't work. – Andrey May 2 at 21:13
feedback

You may check this one. I managed to make it work as expected.

<configuration>
  ...
  <system.serviceModel>
    ...
    <bindings>
      <basicHttpBinding>
        <binding>
          <security mode="TransportCredentialOnly">
            <transport clientCredentialType="Windows" />
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>
    ...
  </system.serviceModel>
  ...
</configuration>
link|improve this answer
1  
thanks for the info -- it'd be a bit more helpful to quote the relevant section of the information here rather than providing a bare hyperlink. – Jeff Atwood Jun 23 '10 at 9:41
feedback

just use your service bindings for mex too.

So change your current config :

<endpoint address="mex" binding="mexHttpBinding" name="mex" contract="IMetadataExchange"></endpoint>

to

<endpoint address="mex" binding="webHttpBinding" bindingConfiguration="default" name="mex" contract="IMetadataExchange"></endpoint>

That should solve the problem

link|improve this answer
Thanks! This worked for me but, just to be clear, I also had to keep httpGetEnabled="true" – McArthey Sep 8 '11 at 17:12
yes you need to have that too – sandyiit Sep 9 '11 at 17:52
feedback

Yes, it looks like you need to remove the mex endpoint completely. Setting

<serviceMetadata httpGetEnabled="false"/>

alone did not work. Thanks!

link|improve this answer
feedback

Solved this issue with setting the security mode to Ntlm

<security> mode="TransportCredentialOnly">
    <transport clientCredentialType="Ntlm"/>
</security>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.