UpdateRadiusUserPortalScenarioIndex – Изменить cценарий портальной аутентификации для Wi-Fi пользователя

Общая информация

  1. Команда актуальна, начиная с версии 1.5

Входные параметры

Параметр Значение Формат значения Расшифровка формата Ссылка

user

Аккаунт WiFi пользователя. Объект NbiNameDomain.

Wi-Fi пользователь

index

Индекс нового сценария портальной аутентификации для пользователя.

[0-9]+

Целое неотрицательное число.

Выходные параметры

Параметр Значение Формат значения

code

Код ответа

Целое неотрицательное число.

detail

Пояснение к ответу

Текст английскими буквами с пробелами и спецсимволами.

response

Объект NbiRadiusUserItemSingle

Примеры команд и кодов

Код Описание ошибки

8

Домен пользователя не соответствует правилам

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>?</xsd:domain>
                <xsd:name>test</xsd:name>
            </nbi:user>
            <nbi:index>2</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>8</ax21:code>
                <ax21:detail>Domain '?' does not conform to the rules FQDN</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

7

Отсутствует домен пользователя

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain></xsd:domain>
                <xsd:name>test</xsd:name>
            </nbi:user>
            <nbi:index>2</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>7</ax21:code>
                <ax21:detail>Incorrect field 'domain' for user.</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

10

Домен роли не имеет прав на домен пользователя или домен тарифного плана

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>root</xsd:domain>
                <xsd:name>test</xsd:name>
            </nbi:user>
            <nbi:index>2</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>10</ax21:code>
                <ax21:detail>The role of the user does not have rights to this domain: 'root'. Role`s domains: 'enterprise.root test.root hotspot.root'</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

62

Домен клиента не зарегистрирован

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>123.root</xsd:domain>
                <xsd:name>test</xsd:name>
            </nbi:user>
            <nbi:index>2</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>62</ax21:code>
                <ax21:detail>Such '123.root' is not registered in ELTEX_EMS.DOMAINS</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

20

Логин аккаунта некорректен

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>hotspot.root</xsd:domain>
                <xsd:name></xsd:name>
            </nbi:user>
            <nbi:index>2</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>20</ax21:code>
                <ax21:detail>Incorrect field 'name' for user.</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

11

Пользователя не существует

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>hotspot.root</xsd:domain>
                <xsd:name>test</xsd:name>
            </nbi:user>
            <nbi:index>2</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>11</ax21:code>
                <ax21:detail>No such radius user 'test[hotspot.root]'.</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

115

Индекс сценария некорректен

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>hotspot.root</xsd:domain>
                <xsd:name>test</xsd:name>
            </nbi:user>
            <nbi:index></nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>115</ax21:code>
                <ax21:detail>In request by key 'index' value can not be null</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

120

Пользователь Wi-Fi не привязан к тарифному плану

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>hotspot.root</xsd:domain>
                <xsd:name>test</xsd:name>
            </nbi:user>
            <nbi:index>2</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>120</ax21:code>
                <ax21:detail>User has no tariff</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

121

Тарифный план не имеет сценария с таким индексом

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>hotspot.root</xsd:domain>
                <xsd:name>test</xsd:name>
            </nbi:user>
            <nbi:index>5</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>121</ax21:code>
                <ax21:detail>Tariff with code 'black' has no scenario with index 5</ax21:detail>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain/>
                    <ax21:name/>
                    <ax21:password/>
                    <ax21:tariffCode/>
                    <ax21:check xsi:nil="true"/>
                    <ax21:common xsi:nil="true"/>
                    <ax21:reply xsi:nil="true"/>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Код Описание ошибки

0

Успешно

Запрос
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:nbi="http://nbi.radius.eltex.org"
    xmlns:xsd="http://response.object.nbi.radius.eltex.org/xsd">
    <soapenv:Header/>
    <soapenv:Body>
        <nbi:UpdateRadiusUserPortalScenarioIndex>
            <nbi:user>
                <xsd:domain>hotspot.root</xsd:domain>
                <xsd:name>79131256352</xsd:name>
            </nbi:user>
            <nbi:index>2</nbi:index>
        </nbi:UpdateRadiusUserPortalScenarioIndex>
    </soapenv:Body>
</soapenv:Envelope>
Ответ
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns:UpdateRadiusUserPortalScenarioIndexResponse
            xmlns:ns="http://nbi.radius.eltex.org">
            <ns:return xsi:type="ax21:NbiCodeRadiusUserItemSingleResponse"
                xmlns:ax21="http://response.object.nbi.radius.eltex.org/xsd"
                xmlns:ax25="http://object.nbi.radius.eltex.org/xsd"
                xmlns:ax23="http://request.object.nbi.radius.eltex.org/xsd"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ax21:code>0</ax21:code>
                <ax21:detail/>
                <ax21:response xsi:type="ax21:NbiRadiusUserItemSingle">
                    <ax21:clientCrtLink/>
                    <ax21:domain>hotspot.root</ax21:domain>
                    <ax21:name>79131256352</ax21:name>
                    <ax21:password>1787</ax21:password>
                    <ax21:tariffCode>black</ax21:tariffCode>
                    <ax21:check xsi:type="ax21:NbiAttrArray">
                        <ax21:attr xsi:type="ax21:NbiAttr">
                            <ax21:name>Cleartext-Password</ax21:name>
                            <ax21:oper>:=</ax21:oper>
                            <ax21:value>1787</ax21:value>
                        </ax21:attr>
                    </ax21:check>
                    <ax21:common xsi:type="ax21:NbiAttrArray">
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-SSID</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value/>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Family</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value/>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Name</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value/>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Division</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value/>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Position</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value/>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Email</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value/>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Phone</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value>79131256352</ax21:value>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Eltex-User-Category</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value>hotspot</ax21:value>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Creator-Name</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value></ax21:value>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Creator-Family</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value/></ax21:value>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                           <ax21:name>Operator-Creator-Phone</ax21:name>
                           <ax21:oper>=</ax21:oper>
                           <ax21:value/></ax21:value>
                        </ax21:attr>
                    </ax21:common>
                    <ax21:reply xsi:type="ax21:NbiAttrArray">
                        <ax21:attr xsi:type="ax21:NbiAttr">
                            <ax21:name>Eltex-State-Begin-Date</ax21:name>
                            <ax21:oper>=</ax21:oper>
                            <ax21:value>1448600974</ax21:value>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                            <ax21:name>Eltex-User-Create-Date</ax21:name>
                            <ax21:oper>=</ax21:oper>
                            <ax21:value>2015-11-26 13:06:42</ax21:value>
                        </ax21:attr>
                        <ax21:attr xsi:type="ax21:NbiAttr">
                            <ax21:name>Eltex-User-State</ax21:name>
                            <ax21:oper>=</ax21:oper>
                            <ax21:value>2</ax21:value>
                        </ax21:attr>
                    </ax21:reply>
                </ax21:response>
            </ns:return>
        </ns:UpdateRadiusUserPortalScenarioIndexResponse>
    </soapenv:Body>
</soapenv:Envelope>

Вернуться к списку команд
Версия 1.19-48
Дата публикации 15-03-2021 16:55:34