Skip to end of metadata
Go to start of metadata

The method is used for collecting information on the available streets for the id of a city Auxiliary method for verification of the available possibilities. W

public ArrayList<StreetApiBean> searchStreetByNameAndCityIdRef(String cityIdRef, String streetName) 
throws MeestException;

streetIdRef in the address

Object StreetApiBean, containing information on the street in 3 languages and its type

Field nameField typeRequiredDescription
streetIdRefStringYStreet ID
descriptionUAStringYName in Ukrainian
descriptionRUStringNName in Russian
descriptionENStringNName in English
streetTypeUAStringYType of street in Ukrainian
streetTypeRUStringNType of street in Russian
cityIdRefStringYCity ID

Example of use:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:log="http://logic.meestgroup.com/">
    <soapenv:Header/>
    <soapenv:Body>
        <log:searchStreetByNameAndCityIdRef>
            <arg0>0xb11200215aee3ebe11df749b62c3d54a</arg0>
            <arg1>Зе</arg1>
        </log:searchStreetByNameAndCityIdRef>
    </soapenv:Body>
</soapenv:Envelope>

Service response:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <ns2:searchStreetByNameAndCityIdRefResponse xmlns:ns2="http://logic.meestgroup.com/">
            <return>
                <cityIdRef>0xb11200215aee3ebe11df749b62c3d54a</cityIdRef>
                <descriptionEN>Zemelna Str. (Lviv) (LVSK)</descriptionEN>
                <descriptionRU>Земельная</descriptionRU>
                <descriptionUA>Земельна</descriptionUA>
                <streetIdRef>0x9b3700215aee3ebe11dfe0d3d46452c8</streetIdRef>
                <streetTypeRU>ул.</streetTypeRU>
                <streetTypeUA>вул.</streetTypeUA>
            </return>
            ....
            <return>
                <cityIdRef>0xb11200215aee3ebe11df749b62c3d54a</cityIdRef>
                <descriptionEN>Zelena Str. (Lviv) (LVSK)</descriptionEN>
                <descriptionRU>Зеленая</descriptionRU>
                <descriptionUA>Зелена</descriptionUA>
                <streetIdRef>0x9b3700215aee3ebe11dfe0d3da9108ea</streetIdRef>
                <streetTypeRU>ул.</streetTypeRU>
                <streetTypeUA>вул.</streetTypeUA>
            </return>
        </ns2:searchStreetByNameAndCityIdRefResponse>
    </soap:Body>
</soap:Envelope>
  • No labels