Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
kaypro4 #1
Consume NOAA Web Service
I'm using the code below to attempt to consume the NOAA weather service and am
getting the following error:
Web service operation "NDFDgen" with parameters
{latitude={42.3485},longitude={-71.0733},endTime={{ts '2005-04-22
16:00:02'}},startTime={{ts '2005-04-21 16:00:02'}},product={glance},} could not
be found.
Here is the documentation: [url]http://weather.gov/forecasts/xml/[/url]
Am I missing something obvious?
Thanks!
<cfinvoke
webservice="http://weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl"
method="NDFDgen"
returnvariable="dwmlOut">
<cfinvokeargument NAME="latitude" VALUE="42.3485">
<cfinvokeargument NAME="longitude" VALUE="-71.0733">
<cfinvokeargument NAME="product" VALUE="glance">
<cfinvokeargument NAME="startTime" VALUE="#now()#">
<cfinvokeargument NAME="endTime" VALUE="#dateAdd("d", 1, now())#">
</cfinvoke>
<CFDUMP VAR="#dwmlOut#">
kaypro4 Guest
-
Web Service Call to consume SAP Web Service
Greetings, I have been stuck trying to get CF 8 to talk to SAP serviced Web Service. Here is code I am using: <cfscript> ws =... -
NOAA Weather Web Service in Flash
Hi, i am really new to Flash and am enjoying the learning process but i have a question which i cant figure out. I live in Colorado Springs and... -
Consume 3rd party web service
Hi: The web service provider required a client certificate for authentication. What this client certificate is ? Is it a certificate use for... -
NOAA Weather Web Service
I'm having a tough time getting the NDFDgen method to work for the NOAA web serivice. Here is the documentation on the service itself: ... -
Consume web service(s)
Folks: I was successfully able to consume the first web service(WS). Created another WS and added a reference on the client project, it added... -
PaulH #2
Re: Consume NOAA Web Service
i think that service is looking for something along the lines of
2005-04-21T00:00:00.5 for start/end times. i vaguely recall somebody (i'd like
to say it was ian skinner but my memory's not that good) getting this to work.
in any case, you can search the cftalk archives for this:
[url]http://www.houseoffusion.com/cf_lists/threads.cfm/4[/url]
PaulH Guest



Reply With Quote

