JanusAT


Click here for a complete list of operations.

GetUserByIds

Получение пользователей по списку их идентификаторов

Test

The test form is only available for methods with primitive types as parameters.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /ws/JanusAT.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://rsdn.ru/Janus/GetUserByIds"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetUserByIds xmlns="http://rsdn.ru/Janus/">
      <request>
        <userName>string</userName>
        <password>string</password>
        <userIds>
          <int>int</int>
          <int>int</int>
        </userIds>
      </request>
    </GetUserByIds>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetUserByIdsResponse xmlns="http://rsdn.ru/Janus/">
      <GetUserByIdsResult>
        <lastRowVersion>base64Binary</lastRowVersion>
        <users>
          <JanusUserInfo>
            <userId>int</userId>
            <userName>string</userName>
            <userNick>string</userNick>
            <realName>string</realName>
            <publicEmail>string</publicEmail>
            <homePage>string</homePage>
            <specialization>string</specialization>
            <whereFrom>string</whereFrom>
            <origin>string</origin>
            <userClass>int</userClass>
            <gravatarHash>string</gravatarHash>
            <countryCode>string</countryCode>
          </JanusUserInfo>
          <JanusUserInfo>
            <userId>int</userId>
            <userName>string</userName>
            <userNick>string</userNick>
            <realName>string</realName>
            <publicEmail>string</publicEmail>
            <homePage>string</homePage>
            <specialization>string</specialization>
            <whereFrom>string</whereFrom>
            <origin>string</origin>
            <userClass>int</userClass>
            <gravatarHash>string</gravatarHash>
            <countryCode>string</countryCode>
          </JanusUserInfo>
        </users>
      </GetUserByIdsResult>
    </GetUserByIdsResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /ws/JanusAT.asmx HTTP/1.1
Host: localhost
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetUserByIds xmlns="http://rsdn.ru/Janus/">
      <request>
        <userName>string</userName>
        <password>string</password>
        <userIds>
          <int>int</int>
          <int>int</int>
        </userIds>
      </request>
    </GetUserByIds>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetUserByIdsResponse xmlns="http://rsdn.ru/Janus/">
      <GetUserByIdsResult>
        <lastRowVersion>base64Binary</lastRowVersion>
        <users>
          <JanusUserInfo>
            <userId>int</userId>
            <userName>string</userName>
            <userNick>string</userNick>
            <realName>string</realName>
            <publicEmail>string</publicEmail>
            <homePage>string</homePage>
            <specialization>string</specialization>
            <whereFrom>string</whereFrom>
            <origin>string</origin>
            <userClass>int</userClass>
            <gravatarHash>string</gravatarHash>
            <countryCode>string</countryCode>
          </JanusUserInfo>
          <JanusUserInfo>
            <userId>int</userId>
            <userName>string</userName>
            <userNick>string</userNick>
            <realName>string</realName>
            <publicEmail>string</publicEmail>
            <homePage>string</homePage>
            <specialization>string</specialization>
            <whereFrom>string</whereFrom>
            <origin>string</origin>
            <userClass>int</userClass>
            <gravatarHash>string</gravatarHash>
            <countryCode>string</countryCode>
          </JanusUserInfo>
        </users>
      </GetUserByIdsResult>
    </GetUserByIdsResponse>
  </soap12:Body>
</soap12:Envelope>