Sample of GetIdentityInfo

This sample of GetIdentityInfo takes a Host Access Profile named Simulator and returns an XML document with the user ID, pseudo city code, and host.

Explicitly valid your request against the GetIdentityInfo schema at http://testws.galileo.com/XmlSelect/Identity.xsd.

Request

<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<soap:Body>

<GetIdentityInfo xmlns="http://webservices.galileo.com">

   <Profile>Simulator</Profile>

</GetIdentityInfo>

</soap:Body></soap:Envelope>

Response

<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<soap:Body>

<GetIdentityInfoResponse xmlns="http://webservices.galileo.com">

<GetIdentityInfoResult>

<Identity xmlns="">

  <Application>

    <VendorId>GWS </VendorId>

    <VendorType>G</VendorType>

    <SourceId>AAA PR</SourceId>

    <SourceType>G</SourceType>

  </Application>

  <User>

    <UserId>SIM</UserId>

    <Pseudo>J0B</Pseudo>

  </User>

  <HostIdentifier>1V</HostIdentifier>

</Identity>

</GetIdentityInfoResult>

</GetIdentityInfoResponse>

</soap:Body></soap:Envelope>