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
Chilkat.Xml xml = 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;
string soapRequestBody = xml.GetXml();

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

Chilkat.Http http = new Chilkat.Http();

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

Chilkat.HttpResponse resp = http.PostXml(endpoint,soapRequestBody,"utf-8");
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    Debug.WriteLine("Failed to send SOAP request.");
    return;
}

// Get the XML response body.
Chilkat.Xml responseXml = new Chilkat.Xml();
resp.GetBodyXml(responseXml);

int statusCode = resp.StatusCode;
Debug.WriteLine("response status code: " + Convert.ToString(statusCode));

// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.
if (statusCode != 200) {
    Debug.WriteLine(responseXml.GetXml());
    return;
}

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

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