Joachim,

Thanks. I checked out the repository and recompiled from there. Below is the new client-side code that works great.

Is there a testbed .fla file that you are using to test object translation problems for? Are there Java types we need to avoid?

What about class mapping? I am used to OpenAMF, but I haven't seen some of the configuration earmarks I'd normally see with that (openamf-gateway.xml)?

Anyway, thanks to you, Joachim, and John and Jake for answering so quickly.

Leif



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
nc = new NetConnection();
nc.connect("rtmp://localhost/lecture");
nc.>    trace(obj.code);
}

nc.
    trace("getTeachers onResult");
    for(var i in obj){
         trace(i+" = "+obj[i]);
         for(var n in obj[i]){
          trace(n+" = "+obj[i][n]);
         }
         trace("Key: " + n);
         trace("Value: " + obj[i][n]);
    }
   

}
nc.call("getTeachers", nc, "blah", "blah");

stop();

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

On 6/8/06, Joachim Bauch <[EMAIL PROTECTED]> wrote:
Hi Leif,

Leif Wells wrote:
> Using the oflaDemo application's Application.java file as an example, I
> was trying to create a method that returns some data from Reb5 to the
> Flash client.
[...]
> What am I doing wrong?

nothing ;)  There was a bug in the "Map" serializer of Red5 which I fixed
yesterday (r900).

If you checkout the 0.4 maintenance branch or are working with the trunk,
everything should be fine.

Joachim

FYI:  Here is the changeset:
http://mirror1.cvsdude.com/trac/osflash/red5/changeset/900

_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to