Hello guys,
We have a very complex client side application which we created using own redeveloped copy of RED5 server.
Now we're porting our software to Wowza server.
All things are clear enough but our software sends complex objects between client and server side.
We have a class on server side like:
And we have a class on client side like:Code:@RemoteClass( alias = "org.conference.User" ) public class User implements Serializable { private long userIP = 0; private int roomID = 0; private int userID = 0; private int userOwner = 0; ... }
This user object is huge and complex.Code:package com.globals { [Bindable] [RemoteClass(alias="org.conference.User")] public class User extends Object { private var _userIP: int = 0; private var _roomID: int = 0; private var _userID: int = 0; private var _userOwner: int = 0; private var _userType: int = 0; ... } }
We use something like this to send this class to the server:
where object "user" is instance of class UserCode:call( "authorize.Authorize", responder, user );
The question:
How to transfer same objects in Wowza?
We found only this one helpful topic:
http://www.wowzamedia.com/forums/sho...ghlight=object
Can somebody explain me how to do it with Wowza?
Thanks for help!
Dan


Reply With Quote