Michael Klishin schrieb:
> Seems that smth changed in the server code. You can compare revisions 
> ofthat file step-by-step if you would like to figure it out ;)
>
you would laugh i did:

from
[CODE]
subversion 1165 (july.13th.2006):
    public Iterator<String> getSharedObjectNames(IScope scope) {
        ISharedObjectService service = (ISharedObjectService) 
getScopeService(scope, ISharedObjectService.SHARED_OBJECT_SERVICE, 
SharedObjectService.class);
        return service.getSharedObjectNames(scope);
    }
[/CODE]

to
[CODE]
subversion 1167(july.14th.2006):
    public Set<String> getSharedObjectNames(IScope scope) {
        ISharedObjectService service = (ISharedObjectService) 
getScopeService(scope, ISharedObjectService.SHARED_OBJECT_SERVICE, 
SharedObjectService.class);
        return service.getSharedObjectNames(scope);
    }
[/CODE]

that was aprox. the time when i implemented the jar file into my 
application,
i gues i used the last one with the datatype iterator instead of a set 
but read the newer
API.

thx for your reply


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

Reply via email to