|
Ok, I'm a bit of a newbie when it comes to Flex, but I just can't get this to work. I'm trying to do an item search on Amazon, using the chunk of code below. However, I keep getting the error that I'm missing required parameters like the "SearchIndex". Am I doing something wrong here? I can't find the answer anywhere else, so I'm at your mercy. Thanks, Josh <mx:WebService id="amazon" wsdl="http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl" useProxy="false"> <mx:operation name="ItemSearch" showBusyCursor="true"> <ItemSearch> <AWSAccessKeyId>1SEH1ZG68CMWH9E84VR2</AWSAccessKeyId> <Service>AWSECommerceService</Service> <Keywords>{searchString.text}</Keywords> <SearchIndex>Blended</SearchIndex> <Operation>ItemSearch</Operation> </ItemSearch> </mx:request> </mx:operation> </mx:WebService> <mx:Panel height="114" layout="absolute" title="Search for products" id="panel1" left="10" right="10" top="10"> <mx:Label x="10" y="10" text="Search String" id="searchLabel"/> <mx:TextInput x="96" y="8" width="228" id="searchString" text="elvis"/> <mx:Button x="332" y="8" label="Search" id="startSearch" click="amazon.ItemSearch.send()"/> </mx:Panel> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
YAHOO! GROUPS LINKS
|
- [flexcoders] Amazon Web Services Josh Buhler
- RE: [flexcoders] Amazon Web Services Benoit Hediard
- RE: [flexcoders] Amazon Web Services Karl Johnson
- Re: [flexcoders] Amazon Web Services Josh Buhler

