2.2.4.6 ClientHTTPSType

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

 <xs:complexType name="ClientHTTPSType">
   <xs:sequence>
     <xs:element name="Port" 
 type="xs:unsignedInt" default="443"/>
     <xs:element name="Basic" 
 type="xs:boolean" default="true"/>
     <xs:element name="Digest" 
 type="xs:boolean" default="true"/>
     <xs:element name="Negotiate" 
 type="xs:boolean" default="true"/>
   </xs:sequence>
 </xs:complexType>
  

Port: MUST be port used by the Web Services Management Protocol Extensions for Windows Server 2003 client when using HTTPS protocol. The minimum value MUST be 1. The maximum value MUST be 65535.

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.