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

<!-- 

This is a sample SOAP request that could be sent to the server.
It specifies the service name as 'getRainFallAndMetadata'
It specifies the station Id as 9753216
It specifies the begin date as 20090601 09:00 YYYYMMDD or YYYYMMDD HH:MM
It specifies the end date as 20090601 09:30 YYYYMMDD or YYYYMMDD HH:MM
And it specifies the output formatting parameter time zone defaulting to GMT (choices are 0 for GMT, 1 for Local Time)
Basically the client is asking for one day worth of data

Choosing LST (Local Standard Time) option as time zone will return resultant data in Local Standard Time of the station.

-->

<soapenv:Header/>
<soapenv:Body>
<rainfall:getRainFallAndMetadata xmlns:rainfall="http://opendap.co-ops.nos.noaa.gov/axis/webservices/rainfall/wsdl">
<stationId>9753216</stationId>
<beginDate>20090601 09:00</beginDate>
<endDate>20090601 09:30</endDate>
<timeZone>0</timeZone>
</rainfall:getRainFallAndMetadata>
</soapenv:Body>
</soapenv:Envelope>
