> However I don't seem to know how to get to the actual XML anymore. When I
> hit the web service it seems to return an object and I'm at a loss as to how
> to get the xml I used to get. Any help would be great.
>
> There's a full description with example code and example response here:
> *http://www.cheappremiumtickets.com/test3.cfm*

You don't need to get to the XML. Instead, just use the methods of
each array member to get the values you need:

<cfinvoke 
webservice="http://tnwebservices.ticketnetwork.com/TNWebservice/v3.1/TNWebserviceStringInputs.asmx?wsdl";
method="GetCategories" returnvariable="myCats">
     <cfinvokeargument name="websiteConfigID" value="2363"/>
</cfinvoke>

<cfloop array="#myCats.getCategory()#" index="thisCategory">
        <cfoutput>
        Child Category Description: 
#thisCategory.getChildCategoryDescription()#<br/>
        Child Category ID: #thisCategory.getChildCategoryID()#<br/>
        ... other values go here ...
        </cfoutput>
        <br/><br/>
</cfloop>

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337540
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to