Brad,

The problem is that the methods made available by the web service (
https://www.blackbookws.com/UsedCarWS.asmx?WSDL) are not what I get back
when I do:

ws = CreateObject("webservice","
https://www.blackbookws.com/UsedCarWS.asmx?WSDL";);

so instead of getting functions like:
getAllProvinces
getAllStates
applyCanadianAdjustments
applyUSAdjustments
getStyles
getColors

(just to name a few...)

I get:
_createCall()
_getCall()
_getProperty(java.lang.String)
_getPropertyNames()
_getService()
_setProperty(java.lang.String, java.lang.Object)
addAttachment(java.lang.Object)
clearAttachments()
clearHeaders()
extractAttachments(org.apache.axis.client.Call)
getAttachments()

none of which the developer of the web service recognizes (I've called him
and spoke with him).

I'm just really, really confused. :o(

On Fri, Jan 23, 2009 at 4:25 PM, <[email protected]> wrote:

> What method of the web service do you wish to call?
>
> It should just be:
> myWS = CreateObject("webservice","https://blah.com/blah.aspx?wsdl";);
> results = myWS.yourDesiredMethod();
>
> Also, if I recall, I was thinking your post to the user group list last
> week mentioned this was a special type of web service rather than plain
> SOAP.  You didn't mention that here on the talk list though.
>
> Can you post the actual URL to the WSDL, or the WSDL itself.  It is
> viewable in a browser, and it tells you what methods you can call.
>
> For reference, here is the docs for it:
> http://www.cfquickdocs.com/#createobjectf
>
> I'll admit the example there is pretty basic, but then again that's
> usually all you need to successfully consume a web service.
>
> ~Brad
>
>
> -------- Original Message --------
> Subject: Re: How do I traverse XML using ColdFusion?
> From: Chris Jordan <[email protected]>
> Date: Fri, January 23, 2009 3:16 pm
> To: cf-talk <[email protected]>
>
> I've kind of solved my problem with the following xPath selector in my
> xPathString:
>
> <cfset YearNodes = XmlSearch(xmlData,"//*[local-name()='year']/")/>
>
> This allows me to reference YearNodes[i].XmlText which contains the
> actual
> string of data that I want. This seems kinda hokey to me though. I'd
> like to
> just get back an array of years (2010,2009,2008,... etc.)
>
>
>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318460
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to