I have notice this behavior on a number of web services.  If you use
cfdump on the returned structure it will give you a glimpse of the
object returned.  However for that particular weather service here is
how I am accessing it.

<cffunction name="getWeather" access="remote" returntype="any">
                <cfargument name="zip" default="20852" required="true">
                <cfinvoke 
        
webservice="http://www.ejse.com/WeatherService/Service.asmx?WSDL";
                 method="getWeatherInfo"
                 returnvariable="aWeatherInfo">
                        <cfinvokeargument name="zipCode"
value="#arguments.zip#"/>
                </cfinvoke>

                <cfreturn #aWeatherInfo#>
        </cffunction>

I then access the strucutured return through Flash (by way of flash
remoting)

Sean

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Scott Keene
Sent: Wednesday, August 13, 2003 3:26 PM
To: [EMAIL PROTECTED]
Subject: RE: [CFCDev] weather web service consumption questions

> I don't think CF converted this to an object either...

I wonder if this isn't actually the case? Still seems weird either way.
Anyone noticed this behavior or anything similar before?

Scott
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the word 'unsubscribe cfcdev' 
in the message of the email.

CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).

----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the word 'unsubscribe cfcdev' 
in the message of the email.

CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).

Reply via email to