General information and pricing on this service can be found here: http://www.cdyne.com/products/default.aspx
Developers can get more information on this service here: http://wiki.cdyne.com/
Click here for a complete list of operations.
GetCityForecastByZIP
Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /WeatherWS/Weather.asmx HTTP/1.1
Host: ws.cdyne.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://ws.cdyne.com/WeatherWS/GetCityForecastByZIP"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetCityForecastByZIP xmlns="http://ws.cdyne.com/WeatherWS/">
<ZIP>string</ZIP>
</GetCityForecastByZIP>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetCityForecastByZIPResponse xmlns="http://ws.cdyne.com/WeatherWS/">
<GetCityForecastByZIPResult>
<Success>boolean</Success>
<ResponseText>string</ResponseText>
<State>string</State>
<City>string</City>
<WeatherStationCity>string</WeatherStationCity>
<ForecastResult>
<Forecast>
<Date>dateTime</Date>
<WeatherID>short</WeatherID>
<Desciption>string</Desciption>
<Temperatures xsi:nil="true" />
<ProbabilityOfPrecipiation xsi:nil="true" />
</Forecast>
<Forecast>
<Date>dateTime</Date>
<WeatherID>short</WeatherID>
<Desciption>string</Desciption>
<Temperatures xsi:nil="true" />
<ProbabilityOfPrecipiation xsi:nil="true" />
</Forecast>
</ForecastResult>
</GetCityForecastByZIPResult>
</GetCityForecastByZIPResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /WeatherWS/Weather.asmx HTTP/1.1
Host: ws.cdyne.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetCityForecastByZIP xmlns="http://ws.cdyne.com/WeatherWS/">
<ZIP>string</ZIP>
</GetCityForecastByZIP>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetCityForecastByZIPResponse xmlns="http://ws.cdyne.com/WeatherWS/">
<GetCityForecastByZIPResult>
<Success>boolean</Success>
<ResponseText>string</ResponseText>
<State>string</State>
<City>string</City>
<WeatherStationCity>string</WeatherStationCity>
<ForecastResult>
<Forecast>
<Date>dateTime</Date>
<WeatherID>short</WeatherID>
<Desciption>string</Desciption>
<Temperatures xsi:nil="true" />
<ProbabilityOfPrecipiation xsi:nil="true" />
</Forecast>
<Forecast>
<Date>dateTime</Date>
<WeatherID>short</WeatherID>
<Desciption>string</Desciption>
<Temperatures xsi:nil="true" />
<ProbabilityOfPrecipiation xsi:nil="true" />
</Forecast>
</ForecastResult>
</GetCityForecastByZIPResult>
</GetCityForecastByZIPResponse>
</soap12:Body>
</soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /WeatherWS/Weather.asmx/GetCityForecastByZIP?ZIP=string HTTP/1.1 Host: ws.cdyne.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ForecastReturn xmlns="http://ws.cdyne.com/WeatherWS/">
<Success>boolean</Success>
<ResponseText>string</ResponseText>
<State>string</State>
<City>string</City>
<WeatherStationCity>string</WeatherStationCity>
<ForecastResult>
<Forecast>
<Date>dateTime</Date>
<WeatherID>short</WeatherID>
<Desciption>string</Desciption>
<Temperatures>
<MorningLow>string</MorningLow>
<DaytimeHigh>string</DaytimeHigh>
</Temperatures>
<ProbabilityOfPrecipiation>
<Nighttime>string</Nighttime>
<Daytime>string</Daytime>
</ProbabilityOfPrecipiation>
</Forecast>
<Forecast>
<Date>dateTime</Date>
<WeatherID>short</WeatherID>
<Desciption>string</Desciption>
<Temperatures>
<MorningLow>string</MorningLow>
<DaytimeHigh>string</DaytimeHigh>
</Temperatures>
<ProbabilityOfPrecipiation>
<Nighttime>string</Nighttime>
<Daytime>string</Daytime>
</ProbabilityOfPrecipiation>
</Forecast>
</ForecastResult>
</ForecastReturn>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /WeatherWS/Weather.asmx/GetCityForecastByZIP HTTP/1.1 Host: ws.cdyne.com Content-Type: application/x-www-form-urlencoded Content-Length: length ZIP=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ForecastReturn xmlns="http://ws.cdyne.com/WeatherWS/">
<Success>boolean</Success>
<ResponseText>string</ResponseText>
<State>string</State>
<City>string</City>
<WeatherStationCity>string</WeatherStationCity>
<ForecastResult>
<Forecast>
<Date>dateTime</Date>
<WeatherID>short</WeatherID>
<Desciption>string</Desciption>
<Temperatures>
<MorningLow>string</MorningLow>
<DaytimeHigh>string</DaytimeHigh>
</Temperatures>
<ProbabilityOfPrecipiation>
<Nighttime>string</Nighttime>
<Daytime>string</Daytime>
</ProbabilityOfPrecipiation>
</Forecast>
<Forecast>
<Date>dateTime</Date>
<WeatherID>short</WeatherID>
<Desciption>string</Desciption>
<Temperatures>
<MorningLow>string</MorningLow>
<DaytimeHigh>string</DaytimeHigh>
</Temperatures>
<ProbabilityOfPrecipiation>
<Nighttime>string</Nighttime>
<Daytime>string</Daytime>
</ProbabilityOfPrecipiation>
</Forecast>
</ForecastResult>
</ForecastReturn>