Returns an array of all user-defined places.
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /services/PlaceLookup.asmx HTTP/1.1
Host: www.codebump.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://skats.net/services/GetAllUserPlaces"
<?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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://skats.net/services/" xmlns:types="http://skats.net/services/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<tns:AuthenticationHeader>
<SessionID xsi:type="xsd:string">string</SessionID>
</tns:AuthenticationHeader>
</soap:Header>
<soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<tns:GetAllUserPlaces />
</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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://skats.net/services/" xmlns:types="http://skats.net/services/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<tns:GetAllUserPlacesResponse>
<GetAllUserPlacesResult href="#id1" />
</tns:GetAllUserPlacesResponse>
<soapenc:Array id="id1" soapenc:arrayType="tns:UserPlaceDetail[2]">
<Item href="#id2" />
<Item href="#id3" />
</soapenc:Array>
<tns:UserPlaceDetail id="id2" xsi:type="tns:UserPlaceDetail">
<Id xsi:type="xsd:int">int</Id>
<Name xsi:type="xsd:string">string</Name>
<Address xsi:type="xsd:string">string</Address>
<City xsi:type="xsd:string">string</City>
<State xsi:type="xsd:string">string</State>
<ZipCode xsi:type="xsd:string">string</ZipCode>
<Category xsi:type="xsd:string">string</Category>
<Data xsi:type="xsd:string">string</Data>
<LatDegrees xsi:type="xsd:float">float</LatDegrees>
<LonDegrees xsi:type="xsd:float">float</LonDegrees>
<LatRadians xsi:type="xsd:float">float</LatRadians>
<LonRadians xsi:type="xsd:float">float</LonRadians>
<Distance xsi:type="xsd:float">float</Distance>
<Country xsi:type="xsd:string">string</Country>
</tns:UserPlaceDetail>
<tns:UserPlaceDetail id="id3" xsi:type="tns:UserPlaceDetail">
<Id xsi:type="xsd:int">int</Id>
<Name xsi:type="xsd:string">string</Name>
<Address xsi:type="xsd:string">string</Address>
<City xsi:type="xsd:string">string</City>
<State xsi:type="xsd:string">string</State>
<ZipCode xsi:type="xsd:string">string</ZipCode>
<Category xsi:type="xsd:string">string</Category>
<Data xsi:type="xsd:string">string</Data>
<LatDegrees xsi:type="xsd:float">float</LatDegrees>
<LonDegrees xsi:type="xsd:float">float</LonDegrees>
<LatRadians xsi:type="xsd:float">float</LatRadians>
<LonRadians xsi:type="xsd:float">float</LonRadians>
<Distance xsi:type="xsd:float">float</Distance>
<Country xsi:type="xsd:string">string</Country>
</tns:UserPlaceDetail>
</soap:Body>
</soap:Envelope>
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /services/PlaceLookup.asmx/GetAllUserPlaces? HTTP/1.1
Host: www.codebump.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfUserPlaceDetail xmlns="http://skats.net/services/literalTypes">
<UserPlaceDetail>
<Id>int</Id>
<Name>string</Name>
<Address>string</Address>
<City>string</City>
<State>string</State>
<ZipCode>string</ZipCode>
<Category>string</Category>
<Data>string</Data>
<LatDegrees>float</LatDegrees>
<LonDegrees>float</LonDegrees>
<LatRadians>float</LatRadians>
<LonRadians>float</LonRadians>
<Distance>float</Distance>
<Country>string</Country>
</UserPlaceDetail>
<UserPlaceDetail>
<Id>int</Id>
<Name>string</Name>
<Address>string</Address>
<City>string</City>
<State>string</State>
<ZipCode>string</ZipCode>
<Category>string</Category>
<Data>string</Data>
<LatDegrees>float</LatDegrees>
<LonDegrees>float</LonDegrees>
<LatRadians>float</LatRadians>
<LonRadians>float</LonRadians>
<Distance>float</Distance>
<Country>string</Country>
</UserPlaceDetail>
</ArrayOfUserPlaceDetail>
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /services/PlaceLookup.asmx/GetAllUserPlaces HTTP/1.1
Host: www.codebump.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfUserPlaceDetail xmlns="http://skats.net/services/literalTypes">
<UserPlaceDetail>
<Id>int</Id>
<Name>string</Name>
<Address>string</Address>
<City>string</City>
<State>string</State>
<ZipCode>string</ZipCode>
<Category>string</Category>
<Data>string</Data>
<LatDegrees>float</LatDegrees>
<LonDegrees>float</LonDegrees>
<LatRadians>float</LatRadians>
<LonRadians>float</LonRadians>
<Distance>float</Distance>
<Country>string</Country>
</UserPlaceDetail>
<UserPlaceDetail>
<Id>int</Id>
<Name>string</Name>
<Address>string</Address>
<City>string</City>
<State>string</State>
<ZipCode>string</ZipCode>
<Category>string</Category>
<Data>string</Data>
<LatDegrees>float</LatDegrees>
<LonDegrees>float</LonDegrees>
<LatRadians>float</LatRadians>
<LonRadians>float</LonRadians>
<Distance>float</Distance>
<Country>string</Country>
</UserPlaceDetail>
</ArrayOfUserPlaceDetail>