OK i am having problems with sharedobjects with the trunk 1646, but already
before:

the fact is something as simple as this:

        public boolean appStart(IScope scope) {
                createSharedObject(scope,"object1",true);
                return true;
        }

        public boolean appConnect(IConnection conn, Object[] params) {
                ISharedObject s1 = getSharedObject(scope, "object1", true);
                s1.beginUpdate();
                s1.setAttribute("id1", "id of client 1");
                s1.endUpdate();
                return true;
        }

returns String index out of range...at RTMPHandler, when a client
connects...the error occurs with setAttribute; so is my approach wrong or is
this actually not working?

tnx,
Greg


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

Reply via email to