mi problema es que todo es correcto hasta que los parametros son enviados, puesto que convierte los tags < y > por < y > . alguna sugerencia???
Código PHP:
var operationName:*="getSomething";
var xml:*=<data><name>insane</name></data>;
var theWebservice:WebService= new WebService();
theWebservice.showBusyCursor=true;
theWebservice.useProxy=false;
theWebservice.addEventListener(LoadEvent.LOAD,function(e:LoadEvent):void{
theWebservice.getOperation(operationName).send( xml );
});
theWebservice.loadWSDL(uri);
var op:Operation= new Operation(theWebservice,operationName);
op.resultFormat="xml";