Hello all... I want to call the method "getAccountPerformance" in the following wsdl.
https://qaapi.business.com/v3_0_1/Account?wsdl For the life of me, I cant figure out how to pass the parameters in. The soap envelope that I want to send looks like this: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://account.soap.business.com/types"> <soapenv:Header/> <soapenv:Body> <typ:getAccountPerformance> <GetAccountPerformanceInputVO_1> <credentials> <licenseKey>?</licenseKey> <password>?</password> <username>?</username> </credentials> <endDate>?</endDate> <startDate>?</startDate> </GetAccountPerformanceInputVO_1> </typ:getAccountPerformance> </soapenv:Body> </soapenv:Envelope> I've sent the envelope above using soapUI (which is a great free product btw) so I know it works. An example in MXML and ActionScript would be greatly appreciated... - Mike

