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 fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

set xml = CreateObject("Chilkat_9_5_0.Xml")
xml.Tag = "soapenv:Envelope"
success = xml.AddAttribute("xmlns:awd","http://www.wcc.nrcs.usda.gov/ns/awdbWebService")
success = 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 = 0
soapRequestBody = xml.GetXml()

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

set http = CreateObject("Chilkat_9_5_0.Http")

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

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = 0) Then
    outFile.WriteLine(http.LastErrorText)
    outFile.WriteLine("Failed to send SOAP request.")
    WScript.Quit
End If

' Get the XML response body.
set responseXml = CreateObject("Chilkat_9_5_0.Xml")
success = resp.GetBodyXml(responseXml)

statusCode = resp.StatusCode
outFile.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
    outFile.WriteLine(responseXml.GetXml())
    WScript.Quit
End If

outFile.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).

comment = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:comment")
analysisType = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:analysisType")
calibrationEndYear = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:calibrationEndYear")
calibrationStartYear = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:calibrationStartYear")
comment = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:comment")
componentsToRetain = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:componentsToRetain")
creationDate = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:creationDate")
dailyForecast = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:dailyForecast")
dailyForecastThreshold = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:dailyForecastThreshold")
dailyForecastThresholdRelative = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:dailyForecastThresholdRelative")
dataForcedSeriallyComplete = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:dataForcedSeriallyComplete")
degreesOfFreedom = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:degreesOfFreedom")
forecastCondition = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:forecastCondition")
forecastType = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:forecastType")
forecaster = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:forecaster")
functionArgument = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:functionArgument")
functionCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:functionCd")
helperDataSource = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperDataSource")
helperElementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperElementCd")
helperEndDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperEndDay")
helperEndMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperEndMonth")
helperEndYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperEndYearFlag")
helperMixedPastEndDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastEndDay")
helperMixedPastEndMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastEndMonth")
helperMixedPastEndYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastEndYearFlag")
helperMixedPastStartDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastStartDay")
helperMixedPastStartMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastStartMonth")
helperMixedPastStartYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperMixedPastStartYearFlag")
helperPredictorUsed = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperPredictorUsed")
helperStartDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperStartDay")
helperStartMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperStartMonth")
helperStartYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperStartYearFlag")
helperStationTriplet = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperStationTriplet")
helperUsedInOverlappingYears = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperUsedInOverlappingYears")
helperVarianceMatchedToObserved = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:helperVarianceMatchedToObserved")
jackKnifingUsed = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:jackKnifingUsed")
key = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:key")
minimumR2ForPredictor = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:minimumR2ForPredictor")
minimumYearsForPredictor = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:minimumYearsForPredictor")
mixedPastEndDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastEndDay")
mixedPastEndMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastEndMonth")
mixedPastEndYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastEndYearFlag")
mixedPastStartDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastStartDay")
mixedPastStartMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastStartMonth")
mixedPastStartYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastStartYearFlag")
mixedPastUsed = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:mixedPastUsed")
name = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:name")
numYearsUsed = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:numYearsUsed")
optimalWeightingUsed = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:optimalWeightingUsed")
overrideAverage = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:overrideAverage")
overrideStderr = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:overrideStderr")
pastFlowRealtime = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:pastFlowRealtime")
customStationListName = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:customStationListName")
dataSourceCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:dataSourceCd")
elementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:elementCd")
globalMonthChangeAllowed = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:globalMonthChangeAllowed")
groupName = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:groupName")
groupNumber = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:groupNumber")
negativeWeightAllowed = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:negativeWeightAllowed")
networks = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:networks")
states = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:states")
upstreamForecast = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictorGroups|*:upstreamForecast")
endDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:endDay")
endMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:endMonth")
endYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:endYearFlag")
groupNumber = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:groupNumber")
predictorNumber = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:predictorNumber")
predictorUsed = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:predictorUsed")
startDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:startDay")
startMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:startMonth")
startYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:startYearFlag")
stationTriplet = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:predictors|*:stationTriplet")
preprocessingConstant = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:preprocessingConstant")
preprocessingMultiplier = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:preprocessingMultiplier")
publicationCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:publicationCd")
TTestLimit = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:TTestLimit")
targetDataSource = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetDataSource")
targetElementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetElementCd")
targetEndDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetEndDay")
targetEndMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetEndMonth")
targetEndYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetEndYearFlag")
targetStartDay = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStartDay")
targetStartMonth = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStartMonth")
targetStartYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStartYearFlag")
targetStationName = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStationName")
targetStationTriplet = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:targetStationTriplet")
transformErrorsOnly = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:configuration|*:transformErrorsOnly")
coordinatedForecastIssueDate = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:coordinatedForecastIssueDate")
coordinatedForecastProbabilities = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:coordinatedForecastProbabilities")
coordinatedForecastValues = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:coordinatedForecastValues")
elementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:elementCd")
comment = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:comment")
dataSource = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:dataSource")
elementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:elementCd")
coefficient = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:coefficient")
dataPeriodDays = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:dataPeriodDays")
dataPeriodMonth = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:dataPeriodMonth")
dataYearFlag = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:dataYearFlag")
beginDate = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:beginDate")
dataPrecision = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:dataPrecision")
duration = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:duration")
elementCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:elementCd")
endDate = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:endDate")
unitCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:heightDepth|*:unitCd")
value = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:heightDepth|*:value")
ordinal = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:ordinal")
originalUnitCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:originalUnitCd")
stationTriplet = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:equationTerms|*:stationElement|*:stationTriplet")
storedUnitCd = 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")
footnotes = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:footnotes")
forecastCondition = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:forecastCondition")
forecastPeriod = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:forecastPeriod")
forecastType = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:forecastType")
v_function = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:function")
functionArgument = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:functionArgument")
interceptConstant = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:interceptConstant")
key = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:key")
maxOfRecord = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:maxOfRecord")
minOfRecord = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:minOfRecord")
monthlyCorrelationCoefficients = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:monthlyCorrelationCoefficients")
monthlyStderrValues = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:monthlyStderrValues")
name = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:name")
day = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:publicationMonthsAndDays|*:day")
month = responseXml.GetChildIntValue("*:Body|*:getAllForecastsForStationResponse|*:return|*:equation|*:publicationMonthsAndDays|*:month")
published = 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")
forecastFinal = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:forecastFinal")
forecastPeriodCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:forecastPeriodCd")
forecastPeriodName = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:forecastPeriodName")
forecaster = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:forecaster")
hydrologistForecastIssueDate = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:hydrologistForecastIssueDate")
hydrologistForecastProbabilities = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:hydrologistForecastProbabilities")
hydrologistForecastValues = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:hydrologistForecastValues")
originalForecastIssueDate = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:originalForecastIssueDate")
originalForecastProbabilities = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:originalForecastProbabilities")
originalForecastValues = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:originalForecastValues")
otherAgencyCds = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:otherAgencyCds")
otherAgencyForecastValues = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:otherAgencyForecastValues")
periodAverage = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:periodAverage")
publicationDate = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:publicationDate")
stationTriplet = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:stationTriplet")
unitCd = responseXml.GetChildContent("*:Body|*:getAllForecastsForStationResponse|*:return|*:unitCd")

outFile.Close
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>