SOAP WSDL Generate Code

AwdbWebServiceSoapBinding / getAllForecastsForStation

ASP AutoIt C C (Unicode) C++ C++ (Unicode) C# DataFlex Delphi Foxpro Go Java Node.js Objective-C Perl PHP Extension PowerBuilder Powershell PureBasic Python CkPython Ruby SQL Server Swift TCL VB.NET VB6 VBScript Xojo
Dim xml As New Chilkat.Xml
xml.Tag = "soapenv:Envelope"
xml.AddAttribute("xmlns:awd","http://www.wcc.nrcs.usda.gov/ns/awdbWebService")
xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
xml.UpdateChildContent("soapenv:Header","")
xml.UpdateChildContent("soapenv:Body|awd:getAllForecastsForStation|awd:stationTriplet","string")
xml.UpdateChildContent("soapenv:Body|awd:getAllForecastsForStation|awd:beginPublicationDate","string")
xml.UpdateChildContent("soapenv:Body|awd:getAllForecastsForStation|awd:endPublicationDate","string")


' In a SOAP HTTP request, including the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) in the XML body is generally not required. 
xml.EmitXmlDecl = False
Dim soapRequestBody As String = xml.GetXml()

Dim endpoint As String = "https://wcc.sc.egov.usda.gov/awdbWebService/services"
Dim soapAction As String = ""
'  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
Dim contentType As String = "text/xml"

Dim http As New Chilkat.Http

http.ClearHeaders()
http.SetRequestHeader("Content-Type",contentType)
http.SetRequestHeader("SOAPAction",soapAction)

Dim resp As Chilkat.HttpResponse = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = False) Then
    Debug.WriteLine(http.LastErrorText)
    Debug.WriteLine("Failed to send SOAP request.")
    Exit Sub
End If


' Get the XML response body.
Dim responseXml As New Chilkat.Xml
resp.GetBodyXml(responseXml)

Dim statusCode As Integer = resp.StatusCode
Debug.WriteLine("response status code: " & statusCode)



' If the status code does not indicate succcess, then show the response XML,
' which probably contains error information.
If (statusCode <> 200) Then
    Debug.WriteLine(responseXml.GetXml())
    Exit Sub
End If


Debug.WriteLine(responseXml.GetXml())

' Parse the successful SOAP response XML.

' This is a sample of the response XML, but the namespace prefixes will be different.
' We can parse the result using "*" for the namespace prefixes (see below).


Dim comment As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:comment")
Dim analysisType As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:analysisType")
Dim calibrationEndYear As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:calibrationEndYear")
Dim calibrationStartYear As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:calibrationStartYear")
comment = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:comment")
Dim componentsToRetain As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:componentsToRetain")
Dim creationDate As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:creationDate")
Dim dailyForecast As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:dailyForecast")
Dim dailyForecastThreshold As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:dailyForecastThreshold")
Dim dailyForecastThresholdRelative As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:dailyForecastThresholdRelative")
Dim dataForcedSeriallyComplete As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:dataForcedSeriallyComplete")
Dim degreesOfFreedom As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:degreesOfFreedom")
Dim forecastCondition As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:forecastCondition")
Dim forecastType As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:forecastType")
Dim forecaster As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:forecaster")
Dim functionArgument As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:functionArgument")
Dim functionCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:functionCd")
Dim helperDataSource As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperDataSource")
Dim helperElementCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperElementCd")
Dim helperEndDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperEndDay")
Dim helperEndMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperEndMonth")
Dim helperEndYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperEndYearFlag")
Dim helperMixedPastEndDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastEndDay")
Dim helperMixedPastEndMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastEndMonth")
Dim helperMixedPastEndYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastEndYearFlag")
Dim helperMixedPastStartDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastStartDay")
Dim helperMixedPastStartMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastStartMonth")
Dim helperMixedPastStartYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastStartYearFlag")
Dim helperPredictorUsed As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperPredictorUsed")
Dim helperStartDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperStartDay")
Dim helperStartMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperStartMonth")
Dim helperStartYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperStartYearFlag")
Dim helperStationTriplet As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperStationTriplet")
Dim helperUsedInOverlappingYears As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperUsedInOverlappingYears")
Dim helperVarianceMatchedToObserved As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperVarianceMatchedToObserved")
Dim jackKnifingUsed As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:jackKnifingUsed")
Dim key As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:key")
Dim minimumR2ForPredictor As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:minimumR2ForPredictor")
Dim minimumYearsForPredictor As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:minimumYearsForPredictor")
Dim mixedPastEndDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastEndDay")
Dim mixedPastEndMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastEndMonth")
Dim mixedPastEndYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastEndYearFlag")
Dim mixedPastStartDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastStartDay")
Dim mixedPastStartMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastStartMonth")
Dim mixedPastStartYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastStartYearFlag")
Dim mixedPastUsed As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastUsed")
Dim name As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:name")
Dim numYearsUsed As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:numYearsUsed")
Dim optimalWeightingUsed As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:optimalWeightingUsed")
Dim overrideAverage As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:overrideAverage")
Dim overrideStderr As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:overrideStderr")
Dim pastFlowRealtime As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:pastFlowRealtime")
Dim customStationListName As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:customStationListName")
Dim dataSourceCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:dataSourceCd")
Dim elementCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:elementCd")
Dim globalMonthChangeAllowed As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:globalMonthChangeAllowed")
Dim groupName As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:groupName")
Dim groupNumber As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:groupNumber")
Dim negativeWeightAllowed As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:negativeWeightAllowed")
Dim networks As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:networks")
Dim states As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:states")
Dim upstreamForecast As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:upstreamForecast")
Dim endDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:endDay")
Dim endMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:endMonth")
Dim endYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:endYearFlag")
groupNumber = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:groupNumber")
Dim predictorNumber As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:predictorNumber")
Dim predictorUsed As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:predictorUsed")
Dim startDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:startDay")
Dim startMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:startMonth")
Dim startYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:startYearFlag")
Dim stationTriplet As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:stationTriplet")
Dim preprocessingConstant As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:preprocessingConstant")
Dim preprocessingMultiplier As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:preprocessingMultiplier")
Dim publicationCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:publicationCd")
Dim TTestLimit As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:TTestLimit")
Dim targetDataSource As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetDataSource")
Dim targetElementCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetElementCd")
Dim targetEndDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetEndDay")
Dim targetEndMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetEndMonth")
Dim targetEndYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetEndYearFlag")
Dim targetStartDay As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStartDay")
Dim targetStartMonth As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStartMonth")
Dim targetStartYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStartYearFlag")
Dim targetStationName As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStationName")
Dim targetStationTriplet As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStationTriplet")
Dim transformErrorsOnly As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:transformErrorsOnly")
Dim coordinatedForecastIssueDate As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:coordinatedForecastIssueDate")
Dim coordinatedForecastProbabilities As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:coordinatedForecastProbabilities")
Dim coordinatedForecastValues As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:coordinatedForecastValues")
elementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:elementCd")
comment = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:comment")
Dim dataSource As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:dataSource")
elementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:elementCd")
Dim coefficient As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:coefficient")
Dim dataPeriodDays As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:dataPeriodDays")
Dim dataPeriodMonth As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:dataPeriodMonth")
Dim dataYearFlag As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:dataYearFlag")
Dim beginDate As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:beginDate")
Dim dataPrecision As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:dataPrecision")
Dim duration As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:duration")
elementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:elementCd")
Dim endDate As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:endDate")
Dim unitCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:heightDepth|*:unitCd")
Dim value As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:heightDepth|*:value")
Dim ordinal As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:ordinal")
Dim originalUnitCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:originalUnitCd")
stationTriplet = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:stationTriplet")
Dim storedUnitCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:storedUnitCd")
unitCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:unitCd")
upstreamForecast = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:upstreamForecast")
Dim footnotes As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:footnotes")
forecastCondition = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:forecastCondition")
Dim forecastPeriod As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:forecastPeriod")
forecastType = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:forecastType")
Dim v_function As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:function")
functionArgument = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:functionArgument")
Dim interceptConstant As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:interceptConstant")
key = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:key")
Dim maxOfRecord As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:maxOfRecord")
Dim minOfRecord As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:minOfRecord")
Dim monthlyCorrelationCoefficients As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:monthlyCorrelationCoefficients")
Dim monthlyStderrValues As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:monthlyStderrValues")
name = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:name")
Dim day As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:publicationMonthsAndDays|*:day")
Dim month As Integer = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:publicationMonthsAndDays|*:month")
Dim published As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:published")
stationTriplet = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:stationTriplet")
transformErrorsOnly = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:transformErrorsOnly")
unitCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:unitCd")
Dim forecastFinal As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:forecastFinal")
Dim forecastPeriodCd As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:forecastPeriodCd")
Dim forecastPeriodName As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:forecastPeriodName")
forecaster = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:forecaster")
Dim hydrologistForecastIssueDate As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:hydrologistForecastIssueDate")
Dim hydrologistForecastProbabilities As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:hydrologistForecastProbabilities")
Dim hydrologistForecastValues As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:hydrologistForecastValues")
Dim originalForecastIssueDate As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:originalForecastIssueDate")
Dim originalForecastProbabilities As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:originalForecastProbabilities")
Dim originalForecastValues As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:originalForecastValues")
Dim otherAgencyCds As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:otherAgencyCds")
Dim otherAgencyForecastValues As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:otherAgencyForecastValues")
Dim periodAverage As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:periodAverage")
Dim publicationDate As String = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:publicationDate")
stationTriplet = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:stationTriplet")
unitCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:unitCd")
Request XML
<soapenv:Envelope xmlns:awd="http://www.wcc.nrcs.usda.gov/ns/awdbWebService" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
        <awd:getAllForecastsForStation>
            <awd:stationTriplet>string</awd:stationTriplet>
            <awd:beginPublicationDate>string</awd:beginPublicationDate>
            <awd:endPublicationDate>string</awd:endPublicationDate>
        </awd:getAllForecastsForStation>
    </soapenv:Body>
</soapenv:Envelope>
Response XML
<soapenv:Envelope xmlns:awd="http://www.wcc.nrcs.usda.gov/ns/awdbWebService" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
        <awd:getAllForecastsForStationResponse>
            <awd:return>
                <awd:comment>string</awd:comment>
                <awd:configuration>
                    <awd:analysisType>string</awd:analysisType>
                    <awd:calibrationEndYear>1042</awd:calibrationEndYear>
                    <awd:calibrationStartYear>1042</awd:calibrationStartYear>
                    <awd:comment>string</awd:comment>
                    <awd:componentsToRetain>1042</awd:componentsToRetain>
                    <awd:creationDate>string</awd:creationDate>
                    <awd:dailyForecast>true</awd:dailyForecast>
                    <awd:dailyForecastThreshold>99.0</awd:dailyForecastThreshold>
                    <awd:dailyForecastThresholdRelative>true</awd:dailyForecastThresholdRelative>
                    <awd:dataForcedSeriallyComplete>true</awd:dataForcedSeriallyComplete>
                    <awd:degreesOfFreedom>1042</awd:degreesOfFreedom>
                    <awd:forecastCondition>string</awd:forecastCondition>
                    <awd:forecastType>string</awd:forecastType>
                    <awd:forecaster>string</awd:forecaster>
                    <awd:functionArgument>99.0</awd:functionArgument>
                    <awd:functionCd>string</awd:functionCd>
                    <awd:helperDataSource>string</awd:helperDataSource>
                    <awd:helperElementCd>string</awd:helperElementCd>
                    <awd:helperEndDay>1042</awd:helperEndDay>
                    <awd:helperEndMonth>1042</awd:helperEndMonth>
                    <awd:helperEndYearFlag>string</awd:helperEndYearFlag>
                    <awd:helperMixedPastEndDay>1042</awd:helperMixedPastEndDay>
                    <awd:helperMixedPastEndMonth>1042</awd:helperMixedPastEndMonth>
                    <awd:helperMixedPastEndYearFlag>string</awd:helperMixedPastEndYearFlag>
                    <awd:helperMixedPastStartDay>1042</awd:helperMixedPastStartDay>
                    <awd:helperMixedPastStartMonth>1042</awd:helperMixedPastStartMonth>
                    <awd:helperMixedPastStartYearFlag>string</awd:helperMixedPastStartYearFlag>
                    <awd:helperPredictorUsed>true</awd:helperPredictorUsed>
                    <awd:helperStartDay>1042</awd:helperStartDay>
                    <awd:helperStartMonth>1042</awd:helperStartMonth>
                    <awd:helperStartYearFlag>string</awd:helperStartYearFlag>
                    <awd:helperStationTriplet>string</awd:helperStationTriplet>
                    <awd:helperUsedInOverlappingYears>true</awd:helperUsedInOverlappingYears>
                    <awd:helperVarianceMatchedToObserved>true</awd:helperVarianceMatchedToObserved>
                    <awd:jackKnifingUsed>true</awd:jackKnifingUsed>
                    <awd:key>1042</awd:key>
                    <awd:minimumR2ForPredictor>99.0</awd:minimumR2ForPredictor>
                    <awd:minimumYearsForPredictor>1042</awd:minimumYearsForPredictor>
                    <awd:mixedPastEndDay>1042</awd:mixedPastEndDay>
                    <awd:mixedPastEndMonth>1042</awd:mixedPastEndMonth>
                    <awd:mixedPastEndYearFlag>string</awd:mixedPastEndYearFlag>
                    <awd:mixedPastStartDay>1042</awd:mixedPastStartDay>
                    <awd:mixedPastStartMonth>1042</awd:mixedPastStartMonth>
                    <awd:mixedPastStartYearFlag>string</awd:mixedPastStartYearFlag>
                    <awd:mixedPastUsed>true</awd:mixedPastUsed>
                    <awd:name>string</awd:name>
                    <awd:numYearsUsed>1042</awd:numYearsUsed>
                    <awd:optimalWeightingUsed>true</awd:optimalWeightingUsed>
                    <awd:overrideAverage>99.0</awd:overrideAverage>
                    <awd:overrideStderr>99.0</awd:overrideStderr>
                    <awd:pastFlowRealtime>99.0</awd:pastFlowRealtime>
                    <awd:predictorGroups>
                        <awd:customStationListName>string</awd:customStationListName>
                        <awd:dataSourceCd>string</awd:dataSourceCd>
                        <awd:elementCd>string</awd:elementCd>
                        <awd:globalMonthChangeAllowed>true</awd:globalMonthChangeAllowed>
                        <awd:groupName>string</awd:groupName>
                        <awd:groupNumber>1042</awd:groupNumber>
                        <awd:negativeWeightAllowed>true</awd:negativeWeightAllowed>
                        <awd:networks>string</awd:networks>
                        <awd:states>string</awd:states>
                        <awd:upstreamForecast>true</awd:upstreamForecast>
                    </awd:predictorGroups>
                    <awd:predictors>
                        <awd:endDay>1042</awd:endDay>
                        <awd:endMonth>1042</awd:endMonth>
                        <awd:endYearFlag>string</awd:endYearFlag>
                        <awd:groupNumber>1042</awd:groupNumber>
                        <awd:predictorNumber>1042</awd:predictorNumber>
                        <awd:predictorUsed>true</awd:predictorUsed>
                        <awd:startDay>1042</awd:startDay>
                        <awd:startMonth>1042</awd:startMonth>
                        <awd:startYearFlag>string</awd:startYearFlag>
                        <awd:stationTriplet>string</awd:stationTriplet>
                    </awd:predictors>
                    <awd:preprocessingConstant>99.0</awd:preprocessingConstant>
                    <awd:preprocessingMultiplier>99.0</awd:preprocessingMultiplier>
                    <awd:publicationCd>string</awd:publicationCd>
                    <awd:TTestLimit>99.0</awd:TTestLimit>
                    <awd:targetDataSource>string</awd:targetDataSource>
                    <awd:targetElementCd>string</awd:targetElementCd>
                    <awd:targetEndDay>1042</awd:targetEndDay>
                    <awd:targetEndMonth>1042</awd:targetEndMonth>
                    <awd:targetEndYearFlag>string</awd:targetEndYearFlag>
                    <awd:targetStartDay>1042</awd:targetStartDay>
                    <awd:targetStartMonth>1042</awd:targetStartMonth>
                    <awd:targetStartYearFlag>string</awd:targetStartYearFlag>
                    <awd:targetStationName>string</awd:targetStationName>
                    <awd:targetStationTriplet>string</awd:targetStationTriplet>
                    <awd:transformErrorsOnly>true</awd:transformErrorsOnly>
                </awd:configuration>
                <awd:coordinatedForecastIssueDate>string</awd:coordinatedForecastIssueDate>
                <awd:coordinatedForecastProbabilities>99.0</awd:coordinatedForecastProbabilities>
                <awd:coordinatedForecastValues>99.0</awd:coordinatedForecastValues>
                <awd:elementCd>string</awd:elementCd>
                <awd:equation>
                    <awd:comment>string</awd:comment>
                    <awd:dataSource>string</awd:dataSource>
                    <awd:elementCd>string</awd:elementCd>
                    <awd:equationTerms>
                        <awd:coefficient>99.0</awd:coefficient>
                        <awd:dataPeriodDays>string</awd:dataPeriodDays>
                        <awd:dataPeriodMonth>string</awd:dataPeriodMonth>
                        <awd:dataYearFlag>string</awd:dataYearFlag>
                        <awd:stationElement>
                            <awd:beginDate>string</awd:beginDate>
                            <awd:dataPrecision>1042</awd:dataPrecision>
                            <awd:duration>DAILY</awd:duration>
                            <awd:elementCd>string</awd:elementCd>
                            <awd:endDate>string</awd:endDate>
                            <awd:heightDepth>
                                <awd:unitCd>string</awd:unitCd>
                                <awd:value>99.0</awd:value>
                            </awd:heightDepth>
                            <awd:ordinal>1042</awd:ordinal>
                            <awd:originalUnitCd>string</awd:originalUnitCd>
                            <awd:stationTriplet>string</awd:stationTriplet>
                            <awd:storedUnitCd>string</awd:storedUnitCd>
                        </awd:stationElement>
                        <awd:unitCd>string</awd:unitCd>
                        <awd:upstreamForecast>true</awd:upstreamForecast>
                    </awd:equationTerms>
                    <awd:footnotes>string</awd:footnotes>
                    <awd:forecastCondition>string</awd:forecastCondition>
                    <awd:forecastPeriod>string</awd:forecastPeriod>
                    <awd:forecastType>string</awd:forecastType>
                    <awd:function>string</awd:function>
                    <awd:functionArgument>99.0</awd:functionArgument>
                    <awd:interceptConstant>99.0</awd:interceptConstant>
                    <awd:key>1042</awd:key>
                    <awd:maxOfRecord>99.0</awd:maxOfRecord>
                    <awd:minOfRecord>99.0</awd:minOfRecord>
                    <awd:monthlyCorrelationCoefficients>99.0</awd:monthlyCorrelationCoefficients>
                    <awd:monthlyStderrValues>99.0</awd:monthlyStderrValues>
                    <awd:name>string</awd:name>
                    <awd:publicationMonthsAndDays>
                        <awd:day>1042</awd:day>
                        <awd:month>1042</awd:month>
                    </awd:publicationMonthsAndDays>
                    <awd:published>true</awd:published>
                    <awd:stationTriplet>string</awd:stationTriplet>
                    <awd:transformErrorsOnly>true</awd:transformErrorsOnly>
                    <awd:unitCd>string</awd:unitCd>
                </awd:equation>
                <awd:forecastFinal>true</awd:forecastFinal>
                <awd:forecastPeriodCd>string</awd:forecastPeriodCd>
                <awd:forecastPeriodName>string</awd:forecastPeriodName>
                <awd:forecaster>string</awd:forecaster>
                <awd:hydrologistForecastIssueDate>string</awd:hydrologistForecastIssueDate>
                <awd:hydrologistForecastProbabilities>99.0</awd:hydrologistForecastProbabilities>
                <awd:hydrologistForecastValues>99.0</awd:hydrologistForecastValues>
                <awd:originalForecastIssueDate>string</awd:originalForecastIssueDate>
                <awd:originalForecastProbabilities>99.0</awd:originalForecastProbabilities>
                <awd:originalForecastValues>99.0</awd:originalForecastValues>
                <awd:otherAgencyCds>string</awd:otherAgencyCds>
                <awd:otherAgencyForecastValues>99.0</awd:otherAgencyForecastValues>
                <awd:periodAverage>99.0</awd:periodAverage>
                <awd:publicationDate>string</awd:publicationDate>
                <awd:stationTriplet>string</awd:stationTriplet>
                <awd:unitCd>string</awd:unitCd>
            </awd:return>
        </awd:getAllForecastsForStationResponse>
    </soapenv:Body>
</soapenv:Envelope>