< Home

Disabling the HTTP Service Function

This section provides a sample of disabling the HTTP service function using the edit-config method.

Table 1 Disabling the HTTP service function

Operation

XPATH

edit-config

/huawei-system-web:web/web-server/service-configuration/enable

Data Requirement 1

Table 2 Disabling the HTTP service function

Item

Data

Description

Whether to enable the HTTP service function.

false

Disable the HTTP service function.

Request Example

<?xml version='1.0' encoding='UTF-8'?>
<rpc message-id="1" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
  <edit-config>
    <target>
      <running/>
    </target>
    <config>
      <web:web xmlns:web="urn:huawei:params:xml:ns:yang:huawei-system-web">
        <web:web-server>
          <web:service-configuration>
            <web:enable>false</web:enable>
          </web:service-configuration>
        </web:web-server>
      </web:web>
    </config>
  </edit-config>
</rpc>

Response Example

Sample of successful response

<?xml version='1.0' encoding='UTF-8'?>
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1">
  <ok/>
</rpc-reply>

Sample of failed response

<?xml version='1.0' encoding='UTF-8'?>
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1">
  <rpc-error>
    <error-type>application</error-type>
    <error-tag>operation-failed</error-tag>
    <error-severity>error</error-severity>
    <error-message>parse rpc config error.</error-message>
  </rpc-error>
</rpc-reply>

Data Requirement 2

Table 3 Deleting packets used for disabling the HTTP service function

Item

Data

Description

Whether to delete packets used for disabling the HTTP service function.

false

Delete packets used for disabling the HTTP service function.

Deletion Example

<?xml version='1.0' encoding='UTF-8'?>
<rpc message-id="1" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
  <edit-config>
    <target>
      <running/>
    </target>
    <config>
      <web:web xmlns:web="urn:huawei:params:xml:ns:yang:huawei-system-web">
        <web:web-server>
          <web:service-configuration>
            <web:enable xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0" xc:operation="delete">false</web:enable>
          </web:service-configuration>
        </web:web-server>
      </web:web>
    </config>
  </edit-config>
</rpc>

Response Example

Sample of successful response

<?xml version='1.0' encoding='UTF-8'?>
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1">
  <ok/>
</rpc-reply>

Sample of failed response

<?xml version='1.0' encoding='UTF-8'?>
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1">
  <rpc-error>
    <error-type>application</error-type>
    <error-tag>operation-failed</error-tag>
    <error-severity>error</error-severity>
    <error-message>parse rpc config error.</error-message>
  </rpc-error>
</rpc-reply>
Copyright © Huawei Technologies Co., Ltd.
Copyright © Huawei Technologies Co., Ltd.
< Previous topic