2.2.4.4 ClientUnencryptedType

ClientUnencryptedType is used to configure the authentication mechanisms that are enabled or disabled on the Web Services Management Protocol Extensions for Windows Server 2003 client when using HTTP as the network transport. The schema MUST be as follows.

 <xs:complexType name="ClientUnencryptedType">
   <xs:sequence>
     <xs:element name="Basic" 
 type="xs:boolean" default="false"/>
     <xs:element name="Digest" 
 type="xs:boolean" default="false"/>
     <xs:element name="Negotiate" 
 type="xs:boolean" default="false"/>
   </xs:sequence>
 </xs:complexType>
  

Basic: Enables or disables HTTP Basic Authentication (as specified in [RFC2617] section 2). MUST be true or false.

Digest: Enables or disables HTTP Digest Authentication (as specified in [RFC2617] section 3). MUST be true or false.

Negotiate: Enables or disables HTTP Negotiate Authentication (as specified in [RFC4559] section 4). MUST be true or false.

These configuration settings MUST be used when sending messages as specified in section 3.2.4.1.15.<5>