Heres my code:
public class Schem
{
    public var info:String="";
    private var ro:RemoteObject = new RemoteObject("Hibernatetest");
    public function Schem()
    {       
        ro.endpoint = "http://jesus/blazeds/messagebroker/amf";
    }
    public function loadCurrentSchem():void
    {
        var token:AsyncToken = ro.getCells();
        token.addResponder(new AsyncResponder(onResult,onFault));
        info = info + "Loader Called ...";
    }
    private function onResult(event:ResultEvent,token:Object):void {
        var cellList:ArrayCollection = event.result as ArrayCollection;
        info = info + "Resulthandler Called";
    }
    private function onFault(event:FaultEvent,token:Object):void
    {
    }
    //Eventhandlers
    //Getters, Setters
}
By inspecting the info String i found out, that the class doesnt reach the Resulthanlder, when i call loadCurrentSchem(). Why is that?