I'm trying to interact with an auction site. Here is a truncated version of their soap doc.
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap=" http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <RequesterCredentials xmlns="API_V2"> <DevKey>string</DevKey> <AppKey>string</AppKey> <UserName>string</UserName> <Password>string</Password> </RequesterCredentials> </soap:Header> <soap:Body> <GetMyAuctions xmlns="API_V2"> <GetMyAuctionsRequest> <Query>string</Query> <CategoryID>int</CategoryID> <TotalOnly>boolean</TotalOnly> <PriceRangeFilter> <MinPrice>decimal</MinPrice> <MaxPrice>decimal</MaxPrice> </PriceRangeFilter> </GetMyAuctionsRequest> </GetMyAuctions> </soap:Body> </soap:Envelope> Here is my most recent coding attempt... gma = CreateObject("webservice", "auctionsiteurl"); RequestCredentials = StructNew(); RequestCredentials.DevKey="..."; RequestCredentials.AppKey="..."; RequestCredentials.UserName="..."; RequestCredentials.Password="..."; gma.setHeader("API_V2","RequestCredentials",RequestCredentials); I think this should work... but its not... I've tried three or four different ways and I get "Could not generate stub objects for web service invocation." Am I even close? Any help appreciated. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268289 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

