What goes in here: (???)

callback1 = wsConn.ItemSearch( ??? );
callback1.onResult = function(result){
   trace( result );
}

- trying to do a search on an artist, and get back a URL to an album
cover...
the wsdl needs my accesskeyid and also other params for the search...






On 3/17/06, Kevin Newman <[EMAIL PROTECTED]> wrote:
>
> I think you might be looking for the *mx.services.WebService class
> instead of the WebServiceConnector class.
>
>
> http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004&file=00002998.html
>
>
>
> import mx.services.WebService;
> import mx.services.PendingCall;
>
> // set up connection
> var wsConn:WebService = new
> WebService('
> http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl'
> );
> wsConn.onLoad = function(wsdlDocument) {
>    trace('WebService Loaded Successfully.');
> };
> wsConn.onFault = ErrorFunc; // not defined in this example
>
> // call ws method (you don't have to wait for the service to load first,
> this will queue automatically)
> var wePendingCall:PendingCall = wsConn.CallMethod('Vars Passed In'); //
> the actaul call
> wsPendingCall.onResult = function (result) {
>     trace(result); // the actual result
> }
> wsPendingCall.onFault = ErrorFunc;
>
>
> Kevin N.
>
> PS My apologies for the double post, it's my first time, and I missed
> changing the subject line..
>
>
> On 3/17/06, eric dolecki <[EMAIL PROTECTED]> wrote:
> > Does anyone have sample code of doing a search for album art using the
> > Amazon web service? You can leave your key out of it...
> >
> > import mx.data.components.WebServiceConnector;
> >
> > var res:Function = function (evt:Object) {
> >     trace( evt.target.results );
> > };
> >
> > var wsConn:WebServiceConnector = new WebServiceConnector();
> > wsConn.addEventListener( "result", res );
> > wsConn.WSDLURL = "
> >
> http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl
> ";
> >
> > // params ...
> >
>
> _______________________________________________
> [email protected]
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to