What I am trying to do is have a NetConnection object pass a result handler to Red5.
I am calling to Red5 like so:
nc.call("getTeachers", Delegate.create(this, onGetTeachersResult), sessionId, classroomId);
and adding:
public function onGetTeachersResult(teachers:Array):Void
{
trace("onGetTeachersResult: length: " + teachers.length);
}
In Java, I am doing something like this:
public List<User> getTeachers( String classroomId, String sessionId ) {
return teachers;
}
I believe that this works on FMS, but I am not getting anything back from the server built from the .5 unstable build. Am I doing something wrong? Has something not been implemented? Thoughts?
trace("onGetTeachersResult: length: " + teachers.length);
}
In Java, I am doing something like this:
public List<User> getTeachers( String classroomId, String sessionId ) {
return teachers;
}
I believe that this works on FMS, but I am not getting anything back from the server built from the .5 unstable build. Am I doing something wrong? Has something not been implemented? Thoughts?
_______________________________________________ Red5 mailing list [email protected] http://osflash.org/mailman/listinfo/red5_osflash.org
