Pus nop, me manda un error:
Severity and Description Path Resource Location Creation Time Id
1046: Type was not found or was not a compile-time constant: FaultEvent. prueba/src prueba1.mxml line 10 1233855197898 92
El código es:
Código:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="mySoul.send()" >
<mx:Script>
<![CDATA[
private function onResult(evt:ResultEvent):void
{
trace(evt.message);
}
private function onError(evt:FaultEvent):void
{
trace(evt.message);
}
]]>
</mx:Script>
<mx:HTTPService id="mySoul" url="http://localhost:8080/asterisk/mxml?Action=Sippeers" showBusyCursor="true" result="onResult(event)" fault="onError(event)"/>
<mx:Label x="289" y="113" text="{mySoul.lastResult.ajax-response.response}" id="MySoul2"/>
</mx:Application>