Sample SOAP Service

Explore our free sample SOAP service for testing & learning

Explore our free sample SOAP service, designed for anyone looking to test and learn SOAP-based web services. This mock server provides sample services such as a list of continents ordered by name and a list of countries sorted by name. Perfect for developers, testers, and learners, our SOAP service offers an easy-to-use platform to experiment with SOAP requests and responses. Key Features: - List of Continents: Retrieve an ordered list of continents with a simple SOAP request. - List of Countries: Access a sorted list of countries by name, ideal for global data applications.

Sample SOAP Service is your solution to frontend-first development! No backend delays – focus on rapid prototyping. Perfect for demos, teaching, interviews. Always online, always available. Empower your creativity today!

Sample SOAP Service server is up and running!

We have set up the mock routes to ensure a smooth adoption. Copy the URL below and set it as the API base URL in your code, and instantly harness the full potential of mocked Sample SOAP Service APIs.

https://soap-service-free.mock.beeceptor.com



200
GET  /CountryInfoService?WSDL
The WSDL specification for this SOAP service.
N/A
N/A
{
  "Content-Type": "application/xml"
}
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.oorsprong.org/websamples.countryinfo" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.oorsprong.org/websamples.countryinfo">
    <wsdl:types>
        <xsd:schema targetNamespace="http://www.oorsprong.org/websamples.countryinfo">
            <xsd:element name="ListOfContinentsByName" type="tns:ListOfContinentsByNameType"/>
            <xsd:element name="ListOfContinentsByNameResponse" type="tns:ListOfContinentsByNameResponseType"/>
            <xsd:element name="ListOfCountryNamesByName" type="tns:ListOfCountryNamesByNameType"/>
            <xsd:element name="ListOfCountryNamesByNameResponse" type="tns:ListOfCountryNamesByNameResponseType"/>
            <xsd:complexType name="ListOfContinentsByNameType"/>
            <xsd:complexType name="ListOfContinentsByNameResponseType">
                <xsd:sequence>
                    <xsd:element name="ListOfContinentsByNameResult" type="tns:ArrayOfContinents"/>
                </xsd:sequence>
            </xsd:complexType>
            <xsd:complexType name="ListOfCountryNamesByNameType"/>
            <xsd:complexType name="ListOfCountryNamesByNameResponseType">
                <xsd:sequence>
                    <xsd:element name="ListOfCountryNamesByNameResult" type="tns:ArrayOfCountryNames"/>
                </xsd:sequence>
            </xsd:complexType>
            <xsd:complexType name="ArrayOfContinents">
                <xsd:sequence>
                    <xsd:element name="tContinent" type="tns:Continent" maxOccurs="unbounded"/>
                </xsd:sequence>
            </xsd:complexType>
            <xsd:complexType name="ArrayOfCountryNames">
                <xsd:sequence>
                    <xsd:element name="tCountryCodeAndName" type="tns:CountryCodeAndName" maxOccurs="unbounded"/>
                </xsd:sequence>
            </xsd:complexType>
            <xsd:complexType name="Continent">
                <xsd:sequence>
                    <xsd:element name="sCode" type="xsd:string"/>
                    <xsd:element name="sName" type="xsd:string"/>
                </xsd:sequence>
            </xsd:complexType>
            <xsd:complexType name="CountryCodeAndName">
                <xsd:sequence>
                    <xsd:element name="sISOCode" type="xsd:string"/>
                    <xsd:element name="sName" type="xsd:string"/>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:schema>
    </wsdl:types>
    <wsdl:message name="ListOfContinentsByNameRequest">
        <wsdl:part name="parameters" element="tns:ListOfContinentsByName"/>
    </wsdl:message>
    <wsdl:message name="ListOfContinentsByNameResponse">
        <wsdl:part name="parameters" element="tns:ListOfContinentsByNameResponse"/>
    </wsdl:message>
    <wsdl:message name="ListOfCountryNamesByNameRequest">
        <wsdl:part name="parameters" element="tns:ListOfCountryNamesByName"/>
    </wsdl:message>
    <wsdl:message name="ListOfCountryNamesByNameResponse">
        <wsdl:part name="parameters" element="tns:ListOfCountryNamesByNameResponse"/>
    </wsdl:message>
    <wsdl:portType name="CountryInfoPortType">
        <wsdl:operation name="ListOfContinentsByName">
            <wsdl:input message="tns:ListOfContinentsByNameRequest"/>
            <wsdl:output message="tns:ListOfContinentsByNameResponse"/>
        </wsdl:operation>
        <wsdl:operation name="ListOfCountryNamesByName">
            <wsdl:input message="tns:ListOfCountryNamesByNameRequest"/>
            <wsdl:output message="tns:ListOfCountryNamesByNameResponse"/>
        </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="CountryInfoBinding" type="tns:CountryInfoPortType">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="ListOfContinentsByName">
            <soap:operation soapAction="http://www.oorsprong.org/websamples.countryinfo/ListOfContinentsByName"/>
            <wsdl:input>
                <soap:body use="literal"/>
            </wsdl:input>
            <wsdl:output>
                <soap:body use="literal"/>
            </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="ListOfCountryNamesByName">
            <soap:operation soapAction="http://www.oorsprong.org/websamples.countryinfo/ListOfCountryNamesByName"/>
            <wsdl:input>
                <soap:body use="literal"/>
            </wsdl:input>
            <wsdl:output>
                <soap:body use="literal"/>
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="CountryInfoService">
        <wsdl:port name="CountryInfoPort" binding="tns:CountryInfoBinding">
            <soap:address location="http://www.oorsprong.org/websamples.countryinfo/CountryInfoService"/>
        </wsdl:port>
    </wsdl:service>
</wsdl:definitions>
200
POST  /CountryInfoService.wso
Access a sorted list of countries by name, ideal for global data applications.
{
  "Content-Type": "application/xml"
}
N/A
{
  "Content-Type": "application/xml"
}
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <m:ListOfCountryNamesByNameResponse xmlns:m="http://www.oorsprong.org/websamples.countryinfo">
            <m:ListOfCountryNamesByNameResult>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AX</m:sISOCode>
                    <m:sName>Åland Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AF</m:sISOCode>
                    <m:sName>Afghanistan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AL</m:sISOCode>
                    <m:sName>Albania</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>DZ</m:sISOCode>
                    <m:sName>Algeria</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AS</m:sISOCode>
                    <m:sName>American Samoa</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AD</m:sISOCode>
                    <m:sName>Andorra</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AO</m:sISOCode>
                    <m:sName>Angola</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AI</m:sISOCode>
                    <m:sName>Anguilla</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AQ</m:sISOCode>
                    <m:sName>Antarctica</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AG</m:sISOCode>
                    <m:sName>Antigua &amp; Barbuda</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AR</m:sISOCode>
                    <m:sName>Argentina</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AM</m:sISOCode>
                    <m:sName>Armenia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AW</m:sISOCode>
                    <m:sName>Aruba</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AU</m:sISOCode>
                    <m:sName>Australia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AT</m:sISOCode>
                    <m:sName>Austria</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AZ</m:sISOCode>
                    <m:sName>Azerbaijan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BS</m:sISOCode>
                    <m:sName>Bahamas</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BH</m:sISOCode>
                    <m:sName>Bahrain</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BD</m:sISOCode>
                    <m:sName>Bangladesh</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BB</m:sISOCode>
                    <m:sName>Barbados</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BY</m:sISOCode>
                    <m:sName>Belarus</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BE</m:sISOCode>
                    <m:sName>Belgium</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BZ</m:sISOCode>
                    <m:sName>Belize</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BJ</m:sISOCode>
                    <m:sName>Benin</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BM</m:sISOCode>
                    <m:sName>Bermuda</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BT</m:sISOCode>
                    <m:sName>Bhutan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BO</m:sISOCode>
                    <m:sName>Bolivia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BQ</m:sISOCode>
                    <m:sName>Bonaire, Sint Eustatius and Saba</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BA</m:sISOCode>
                    <m:sName>Bosnia &amp; Herzegovina</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BW</m:sISOCode>
                    <m:sName>Botswana</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BV</m:sISOCode>
                    <m:sName>Bouvet Island</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BR</m:sISOCode>
                    <m:sName>Brazil</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>IO</m:sISOCode>
                    <m:sName>British Indian Ocean Territory</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BN</m:sISOCode>
                    <m:sName>Brunei-Darussalam</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BG</m:sISOCode>
                    <m:sName>Bulgaria</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BF</m:sISOCode>
                    <m:sName>Burkina Faso</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BI</m:sISOCode>
                    <m:sName>Burundi</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CI</m:sISOCode>
                    <m:sName>Côte D'Ivoire (Ivory Coast)</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KH</m:sISOCode>
                    <m:sName>Cambodia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CM</m:sISOCode>
                    <m:sName>Cameroon</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CA</m:sISOCode>
                    <m:sName>Canada</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CV</m:sISOCode>
                    <m:sName>Cape Verde</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KY</m:sISOCode>
                    <m:sName>Cayman Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CF</m:sISOCode>
                    <m:sName>Central African Republic</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TD</m:sISOCode>
                    <m:sName>Chad</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CL</m:sISOCode>
                    <m:sName>Chile</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CN</m:sISOCode>
                    <m:sName>China</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CX</m:sISOCode>
                    <m:sName>Chrismas Island</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CC</m:sISOCode>
                    <m:sName>Cocos (Keeling) Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MF</m:sISOCode>
                    <m:sName>Collectivity of Saint Martin</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CO</m:sISOCode>
                    <m:sName>Colombia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KM</m:sISOCode>
                    <m:sName>Comoros</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CG</m:sISOCode>
                    <m:sName>Congo</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CD</m:sISOCode>
                    <m:sName>Congo, Democratic Republic</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CK</m:sISOCode>
                    <m:sName>Cook Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CR</m:sISOCode>
                    <m:sName>Costa Rica</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>HR</m:sISOCode>
                    <m:sName>Croatia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CU</m:sISOCode>
                    <m:sName>Cuba</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CW</m:sISOCode>
                    <m:sName>Curaçao</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CY</m:sISOCode>
                    <m:sName>Cyprus</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CZ</m:sISOCode>
                    <m:sName>Czech Republic</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>DK</m:sISOCode>
                    <m:sName>Denmark</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>DJ</m:sISOCode>
                    <m:sName>Djibouti</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>DM</m:sISOCode>
                    <m:sName>Dominica</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>DO</m:sISOCode>
                    <m:sName>Dominican Republic</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>EC</m:sISOCode>
                    <m:sName>Ecuador</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>EG</m:sISOCode>
                    <m:sName>Egypt</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SV</m:sISOCode>
                    <m:sName>El Salvador</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GQ</m:sISOCode>
                    <m:sName>Equatorial Guinea</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ER</m:sISOCode>
                    <m:sName>Eritrea</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>EE</m:sISOCode>
                    <m:sName>Estonia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ET</m:sISOCode>
                    <m:sName>Ethiopia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>FK</m:sISOCode>
                    <m:sName>Falkand Islands (Malvinas)</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>FO</m:sISOCode>
                    <m:sName>Faroe Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>FJ</m:sISOCode>
                    <m:sName>Fiji</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>FI</m:sISOCode>
                    <m:sName>Finland</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>FR</m:sISOCode>
                    <m:sName>France</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GF</m:sISOCode>
                    <m:sName>French Guiana</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PF</m:sISOCode>
                    <m:sName>French Polynesia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TF</m:sISOCode>
                    <m:sName>French Southern Territories</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GA</m:sISOCode>
                    <m:sName>Gabon</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GM</m:sISOCode>
                    <m:sName>Gambia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GE</m:sISOCode>
                    <m:sName>Georgia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>DE</m:sISOCode>
                    <m:sName>Germany</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GH</m:sISOCode>
                    <m:sName>Ghana</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GI</m:sISOCode>
                    <m:sName>Gibraltar</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GR</m:sISOCode>
                    <m:sName>Greece</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GL</m:sISOCode>
                    <m:sName>Greenland</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GD</m:sISOCode>
                    <m:sName>Grenada</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GP</m:sISOCode>
                    <m:sName>Guadeloupe</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GU</m:sISOCode>
                    <m:sName>Guam</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GT</m:sISOCode>
                    <m:sName>Guatemala</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GN</m:sISOCode>
                    <m:sName>Guinea</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GW</m:sISOCode>
                    <m:sName>Guinea-Bissau</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GY</m:sISOCode>
                    <m:sName>Guyana</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>HT</m:sISOCode>
                    <m:sName>Haiti</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>HM</m:sISOCode>
                    <m:sName>Heard Island And McDonald Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>HN</m:sISOCode>
                    <m:sName>Honduras</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>HK</m:sISOCode>
                    <m:sName>Hong Kong</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>HU</m:sISOCode>
                    <m:sName>Hungary</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>IS</m:sISOCode>
                    <m:sName>Iceland</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>IN</m:sISOCode>
                    <m:sName>India</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ID</m:sISOCode>
                    <m:sName>Indonesia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>IR</m:sISOCode>
                    <m:sName>Iran</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>IQ</m:sISOCode>
                    <m:sName>Iraq</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>IE</m:sISOCode>
                    <m:sName>Ireland</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>IL</m:sISOCode>
                    <m:sName>Israel</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>IT</m:sISOCode>
                    <m:sName>Italy</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>JM</m:sISOCode>
                    <m:sName>Jamaica</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>JP</m:sISOCode>
                    <m:sName>Japan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>JO</m:sISOCode>
                    <m:sName>Jordan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KZ</m:sISOCode>
                    <m:sName>Kazakhstan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KE</m:sISOCode>
                    <m:sName>Kenya</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KI</m:sISOCode>
                    <m:sName>Kiribati</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KW</m:sISOCode>
                    <m:sName>Kuwait</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KG</m:sISOCode>
                    <m:sName>Kyrgyzstan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LA</m:sISOCode>
                    <m:sName>Laos</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LV</m:sISOCode>
                    <m:sName>Latvia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LB</m:sISOCode>
                    <m:sName>Lebanon</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LS</m:sISOCode>
                    <m:sName>Lesotho</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LR</m:sISOCode>
                    <m:sName>Liberia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LY</m:sISOCode>
                    <m:sName>Libyan Arab Jamahiriya</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LI</m:sISOCode>
                    <m:sName>Liechtenstein</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LT</m:sISOCode>
                    <m:sName>Lithuania</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LU</m:sISOCode>
                    <m:sName>Luxembourg</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MO</m:sISOCode>
                    <m:sName>Macao</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MK</m:sISOCode>
                    <m:sName>Macedonia  (former YR)</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MG</m:sISOCode>
                    <m:sName>Madagascar</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MW</m:sISOCode>
                    <m:sName>Malawi</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MY</m:sISOCode>
                    <m:sName>Malaysia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MV</m:sISOCode>
                    <m:sName>Maldives (Maladive Ilands)</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ML</m:sISOCode>
                    <m:sName>Mali</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MT</m:sISOCode>
                    <m:sName>Malta</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MH</m:sISOCode>
                    <m:sName>Marshall Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MQ</m:sISOCode>
                    <m:sName>Martinique</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MR</m:sISOCode>
                    <m:sName>Mauritania</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MU</m:sISOCode>
                    <m:sName>Mauritius</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>YT</m:sISOCode>
                    <m:sName>Mayotte</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MX</m:sISOCode>
                    <m:sName>Mexico</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>FM</m:sISOCode>
                    <m:sName>Micronesia  (Federa States of)</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MD</m:sISOCode>
                    <m:sName>Moldova, Republic of</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MC</m:sISOCode>
                    <m:sName>Monaco</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MN</m:sISOCode>
                    <m:sName>Mongolia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ME</m:sISOCode>
                    <m:sName>Montenegro</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MS</m:sISOCode>
                    <m:sName>Montserrat</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MA</m:sISOCode>
                    <m:sName>Morocco</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MZ</m:sISOCode>
                    <m:sName>Mozambique</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MM</m:sISOCode>
                    <m:sName>Myanmar (Burma)</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NA</m:sISOCode>
                    <m:sName>Namibia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NR</m:sISOCode>
                    <m:sName>Nauru</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NP</m:sISOCode>
                    <m:sName>Nepal</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NL</m:sISOCode>
                    <m:sName>Netherlands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AN</m:sISOCode>
                    <m:sName>Netherlands Antilles</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NC</m:sISOCode>
                    <m:sName>New Caledonia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NZ</m:sISOCode>
                    <m:sName>New Zealand</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NI</m:sISOCode>
                    <m:sName>Nicaragua</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NE</m:sISOCode>
                    <m:sName>Niger</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NG</m:sISOCode>
                    <m:sName>Nigeria</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NU</m:sISOCode>
                    <m:sName>Niue</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NF</m:sISOCode>
                    <m:sName>Norfolk Island</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KP</m:sISOCode>
                    <m:sName>North Korea</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>MP</m:sISOCode>
                    <m:sName>Northern Mariana Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>NO</m:sISOCode>
                    <m:sName>Norway</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>OM</m:sISOCode>
                    <m:sName>Oman</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PK</m:sISOCode>
                    <m:sName>Pakistan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PW</m:sISOCode>
                    <m:sName>Palau</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PS</m:sISOCode>
                    <m:sName>Palestinian Territory, Occupied</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PA</m:sISOCode>
                    <m:sName>Panama</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PG</m:sISOCode>
                    <m:sName>Papua-New Guinea</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PY</m:sISOCode>
                    <m:sName>Paraguay</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PE</m:sISOCode>
                    <m:sName>Peru</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PH</m:sISOCode>
                    <m:sName>Philippines</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PN</m:sISOCode>
                    <m:sName>Pitcairn</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PL</m:sISOCode>
                    <m:sName>Poland</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PT</m:sISOCode>
                    <m:sName>Portugal</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PR</m:sISOCode>
                    <m:sName>Puerto Rico</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>QA</m:sISOCode>
                    <m:sName>Quatar</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>RE</m:sISOCode>
                    <m:sName>Reunion</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>RO</m:sISOCode>
                    <m:sName>Romania</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>RU</m:sISOCode>
                    <m:sName>Russian Federation</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>RW</m:sISOCode>
                    <m:sName>Rwanda</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>BL</m:sISOCode>
                    <m:sName>Saint Barthélemy</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SH</m:sISOCode>
                    <m:sName>Saint Helena, Ascension and Tristan da Cunha</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>PM</m:sISOCode>
                    <m:sName>Saint Pierre And Micquelon</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SM</m:sISOCode>
                    <m:sName>San Marino</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ST</m:sISOCode>
                    <m:sName>Sao Tome &amp; Principe</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SA</m:sISOCode>
                    <m:sName>Saudi Arabia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SN</m:sISOCode>
                    <m:sName>Senegal</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>RS</m:sISOCode>
                    <m:sName>Serbia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SC</m:sISOCode>
                    <m:sName>Seychelles</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SL</m:sISOCode>
                    <m:sName>Sierra Leone</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SG</m:sISOCode>
                    <m:sName>Singapore</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SX</m:sISOCode>
                    <m:sName>Sint-Maarten</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SK</m:sISOCode>
                    <m:sName>Slovakia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SI</m:sISOCode>
                    <m:sName>Slovenia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SB</m:sISOCode>
                    <m:sName>Solomon Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SO</m:sISOCode>
                    <m:sName>Somalia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ZA</m:sISOCode>
                    <m:sName>South Africa</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GS</m:sISOCode>
                    <m:sName>South Georgia &amp; South Sandwich Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KR</m:sISOCode>
                    <m:sName>South Korea</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ES</m:sISOCode>
                    <m:sName>Spain</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LK</m:sISOCode>
                    <m:sName>Sri Lanka</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>KN</m:sISOCode>
                    <m:sName>St. Kitts &amp; Nevis</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>LC</m:sISOCode>
                    <m:sName>St. Lucia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>VC</m:sISOCode>
                    <m:sName>St. Vincent &amp; Grenadines</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SD</m:sISOCode>
                    <m:sName>Sudan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SR</m:sISOCode>
                    <m:sName>Suriname</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SJ</m:sISOCode>
                    <m:sName>Svalbard And Jan Mayen</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SZ</m:sISOCode>
                    <m:sName>Swaziland</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SE</m:sISOCode>
                    <m:sName>Sweden</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>CH</m:sISOCode>
                    <m:sName>Switzerland</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>SY</m:sISOCode>
                    <m:sName>Syrian Arab Republic</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TW</m:sISOCode>
                    <m:sName>Taiwan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TJ</m:sISOCode>
                    <m:sName>Tajikistan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TZ</m:sISOCode>
                    <m:sName>Tanzania</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TH</m:sISOCode>
                    <m:sName>Thailand</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TL</m:sISOCode>
                    <m:sName>Timor-Leste</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TG</m:sISOCode>
                    <m:sName>Togo</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TK</m:sISOCode>
                    <m:sName>Tokelau</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TO</m:sISOCode>
                    <m:sName>Tonga</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TT</m:sISOCode>
                    <m:sName>Trinidad &amp; Tobago</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TN</m:sISOCode>
                    <m:sName>Tunisia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TR</m:sISOCode>
                    <m:sName>Turkey</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TM</m:sISOCode>
                    <m:sName>Turkmenistan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TC</m:sISOCode>
                    <m:sName>Turks And Caicos Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>TV</m:sISOCode>
                    <m:sName>Tuvalu</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>UG</m:sISOCode>
                    <m:sName>Uganda</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>UA</m:sISOCode>
                    <m:sName>Ukraine</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>AE</m:sISOCode>
                    <m:sName>United Arab Emirates</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>GB</m:sISOCode>
                    <m:sName>United Kingdom</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>US</m:sISOCode>
                    <m:sName>United States</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>UM</m:sISOCode>
                    <m:sName>United States Minor Outlying Islands</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>UY</m:sISOCode>
                    <m:sName>Uruguay</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>UZ</m:sISOCode>
                    <m:sName>Uzbekistan</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>VU</m:sISOCode>
                    <m:sName>Vanuatu</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>VA</m:sISOCode>
                    <m:sName>Vatican City</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>VE</m:sISOCode>
                    <m:sName>Venezuela</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>VN</m:sISOCode>
                    <m:sName>Vietnam</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>VG</m:sISOCode>
                    <m:sName>Virgin Islands, British</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>VI</m:sISOCode>
                    <m:sName>Virgin Islands, U.S.</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>WF</m:sISOCode>
                    <m:sName>Wallis And Futuna</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>EH</m:sISOCode>
                    <m:sName>Western Sahara</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>WS</m:sISOCode>
                    <m:sName>Western Samoa</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>YE</m:sISOCode>
                    <m:sName>Yemen</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ZM</m:sISOCode>
                    <m:sName>Zambia</m:sName>
                </m:tCountryCodeAndName>
                <m:tCountryCodeAndName>
                    <m:sISOCode>ZW</m:sISOCode>
                    <m:sName>Zimbabwe</m:sName>
                </m:tCountryCodeAndName>
            </m:ListOfCountryNamesByNameResult>
        </m:ListOfCountryNamesByNameResponse>
    </soap:Body>
</soap:Envelope>
200
POST  /CountryInfoService.wso
Retrieve an ordered list of continents with a simple SOAP request.
{
  "Content-Type": "application/xml"
}
N/A
{
  "Content-Type": "application/xml"
}
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <m:ListOfContinentsByNameResponse xmlns:m="http://www.oorsprong.org/websamples.countryinfo">
            <m:ListOfContinentsByNameResult>
                <m:tContinent>
                    <m:sCode>AF</m:sCode>
                    <m:sName>Africa</m:sName>
                </m:tContinent>
                <m:tContinent>
                    <m:sCode>AN</m:sCode>
                    <m:sName>Antarctica</m:sName>
                </m:tContinent>
                <m:tContinent>
                    <m:sCode>AS</m:sCode>
                    <m:sName>Asia</m:sName>
                </m:tContinent>
                <m:tContinent>
                    <m:sCode>EU</m:sCode>
                    <m:sName>Europe</m:sName>
                </m:tContinent>
                <m:tContinent>
                    <m:sCode>OC</m:sCode>
                    <m:sName>Ocenania</m:sName>
                </m:tContinent>
                <m:tContinent>
                    <m:sCode>AM</m:sCode>
                    <m:sName>The Americas</m:sName>
                </m:tContinent>
            </m:ListOfContinentsByNameResult>
        </m:ListOfContinentsByNameResponse>
    </soap:Body>
</soap:Envelope>
 
soap mock server
 
soap testing
 
soap learning
 
soap web service