Webservice -- How to show the result

Hi,

I need a way to see the response in xml format so that I can manipulate the results. Below is the code I tried out,

import mx.services.WebService;
import mx.services.SOAPCall;

var ccWS:WebService = new WebService("[COLOR=#810081]http://www.flash-mx.com/mm/tips/tips.cfc?wsdl[/COLOR]");

var soap:SOAPCall = ccWS.getTipByProduct();

soap.doDecoding = true;
soap.doLazyDecoding = true;
soap = ccWS.getTipByProduct(“Flash”);

soap.onResult = function(result){
trace("result: " + result);
trace("result: " + result.length);
}

I was hoping to print all the xml tags and element at onResult function, can anyone tells me how can I do that?

Thanks in advance.

ivanovi