Here is an example for GetPlayList(int uiFID);

SOAP
The following is a sample SOAP request and response. The placeholders shown need to be replaced with actual values.

POST /RioCar/Service1.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/GetPlayList"

<?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:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetPlayList xmlns="http://tempuri.org/">
<uiFID>int</uiFID>
</GetPlayList>
</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:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetPlayListResponse xmlns="http://tempuri.org/">
<GetPlayListResult>
<structItem>
<szType>string</szType>
<uiTagFID>int</uiTagFID>
<uiFID>int</uiFID>
<uiYear>int</uiYear>
<szOptions>string</szOptions>
<szGenre>string</szGenre>
<szTitle>string</szTitle>
<szArtist>string</szArtist>
<szSource>string</szSource>
<szComment>string</szComment>
<szLength>int</szLength>
</structItem>
<structItem>
<szType>string</szType>
<uiTagFID>int</uiTagFID>
<uiFID>int</uiFID>
<uiYear>int</uiYear>
<szOptions>string</szOptions>
<szGenre>string</szGenre>
<szTitle>string</szTitle>
<szArtist>string</szArtist>
<szSource>string</szSource>
<szComment>string</szComment>
<szLength>int</szLength>
</structItem>
</GetPlayListResult>
</GetPlayListResponse>
</soap:Body>
</soap:Envelope>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /RioCar/Service1.asmx/GetPlayList HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Content-Length: length

uiFID=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfStructItem xmlns="http://tempuri.org/">
<structItem>
<szType>string</szType>
<uiTagFID>int</uiTagFID>
<uiFID>int</uiFID>
<uiYear>int</uiYear>
<szOptions>string</szOptions>
<szGenre>string</szGenre>
<szTitle>string</szTitle>
<szArtist>string</szArtist>
<szSource>string</szSource>
<szComment>string</szComment>
<szLength>int</szLength>
</structItem>
<structItem>
<szType>string</szType>
<uiTagFID>int</uiTagFID>
<uiFID>int</uiFID>
<uiYear>int</uiYear>
<szOptions>string</szOptions>
<szGenre>string</szGenre>
<szTitle>string</szTitle>
<szArtist>string</szArtist>
<szSource>string</szSource>
<szComment>string</szComment>
<szLength>int</szLength>
</structItem>
</ArrayOfStructItem>