MattC
MattC

Reputation: 4014

WCF basicHttpBinding with Transport security specifying message credential type

I've been given a wsdl for a service which VS2010 generated the following binding as part of it's configuration.

    <bindings>
      <basicHttpBinding>
        <binding name="NotificationHttpBinding">
          <security mode="Transport">
            <transport clientCredentialType="None" proxyCredentialType="None" realm="" />
            <message clientCredentialType="UserName" algorithmSuite="Default" />
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>

I'm a little confused as what the message node will do given the mode is set to Transport?

Upvotes: 1

Views: 1004

Answers (1)

Aliostad
Aliostad

Reputation: 81700

Nothing. This will not be used at all. It is safe to remove it.

Upvotes: 1

Related Questions