|
XML Format |
Top Previous Next |
|
The AL-Pro Web Portal Server uses XML to return data from the AL-Pro Database.
The XML will contain an Element that describes the data and then a data count , followed by a row element with the fields returned for the server method.
The example below uses als_get_bases.cgi http call from Internet Explorer.
http://127.0.0.1/als_get_bases.cgi
For debugging purposes, the input params can also be returned by requesting them as an http input with params=yes
http://127.0.0.1/als_get_bases.cgi?params=yes
<?xml version="1.0" encoding="utf-8" ?> - <bases> - <data count="4"> <row code="1" basename="Las Vegas" /> <row code="2" basename="South Rim" /> <row code="3" basename="Grand Canyon West" /> <row code="4" basename="Boulder City" /> </data> </bases>> |