Disabling SSO Service

Use the disable operation to disable SSO support in Plesk. You can disable the service only if it is currently started.

In this chapter:

Request Packet

Response Packet Structure

Samples

 

Request Packet

A request XML packet disabling SSO support includes the disable operation node:

<packet version="1.5.2.0">
<sso>
   <disable/>
</sso>
</packet>

 

The disable node is required. Data type: none.

 

Response Packet Structure

The disable node of the output XML packet is presented by type SSODisableOutput (sso.xsd) and structured as follows:

  • The result node is required. It wraps the response retrieved from the server. Data type: resultType (common.xsd).
  • The status node is required. It specifies the execution status of the disable operation. Data type: string. Allowed values: ok | error.
  • The errcode node is optional. Is returns the error code if the disable operation fails. Data type: integer.
  • The errtext node is optional. It returns the error message if the disable operation fails. Data type: string.

 

 

Samples

This request packet disables the SSO support on the server.

<packet version="1.5.2.0">
<sso>
   <disable/>
</sso>
</packet>

Response:

<packet version="1.5.2.0">
<sso>
   <disable>
      <result>
          <status>ok</status>
      </result>
   </disable>
</sso>
</packet>