<?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 'getVerifiedHourlyAndMetadata'(water level hourly heights data)
It specifies the station Id as 8454000
It specifies the begin date as 20051201 YYYYMMDD or YYYYMMDD HH:MM
It specifies the end date as 20051201 YYYYMMDD or YYYYMMDD HH:MM
It specifies the output formatting parameter datum as MLLW
It specifies the output formatting parameter unit defaulting to meters ( choices are 0 for meters, 1 for feet)
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:Body>
 <water:getVerifiedHourlyAndMetadata xmlns:water="http://opendap.co-ops.nos.noaa.gov/axis/webservices/waterlevelverifiedhourly/wsdl">
  <stationId xmlns="">8454000</stationId> 
  <beginDate xmlns="">20051201</beginDate> 
  <endDate xmlns="">20051201</endDate> 
  <datum xmlns="">MLLW</datum> 
  <unit xmlns="">0</unit> 
  <timeZone xmlns="">0</timeZone> 
  </water:getVerifiedHourlyAndMetadata>
  </soapenv:Body>
  </soapenv:Envelope>
