Results 1 to 2 of 2

Thread: Send complex objects between Flex and Wowza

  1. #1
    Join Date
    Mar 2010
    Posts
    12

    Post Send complex objects between Flex and Wowza

    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:
    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;
    	...
    }
    And we have a class on client side like:
    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;
    		...
    	}
    }
    This user object is huge and complex.
    We use something like this to send this class to the server:
    Code:
    call( "authorize.Authorize", responder, user );
    where object "user" is instance of class 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

  2. #2
    Join Date
    Dec 2007
    Posts
    25,630

    Default

    Take a look at the ServerSideModules example, a working reference for sending data between Wowza and Flash client.

    Richard

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •