Hi there,

and a big Hello to all of you. I am on the list a long time, but have
never tried RED5 yet, so I am a beginner...

Today I installed RED5 on my Windows Server, the Port 1935 is opened
in the firewall.

I run my website from a Linux Server. Because of several reasons I
want to use the Windows Server for all communication and run my
Websites from a more secure Linux System.

I have installed RAY Media Software which uses RED5 and installation
worked, but it cant connect to the RED5 Server (maybe). Ray Media is
made by boonex.com

When I try to start the videochat I get a connection error, see also:

http://www.strippokercash.com/ray

Documentation from boonex is terrible...

How can I test that my RED5 works correct? They samples didnt look
like they work, not on the server, and not on my local system...

Thanks a lot and keep going...


-- 
Kind Regards
Mit freundlichen Grüßen
Dieter Eckhardt
mailto:[EMAIL PROTECTED]
Yahoo ID: dyter08
ICQ: 35719013
skype: strip-poker.com
SC ECKHARDT SRL - Timisoara - Romania




on Donnerstag, 28. September 2006 at 19:26 you wrote:

>     
>   
>   
> Hi,
>   
>  
>   
> I am just trying to implement SharedObjects using Flex 2.
>   
>  
>   
> I am having troubles with Red5‘s sendMessage and Flex2’s send. It just doesnt 
> work.
>   
>  
>   
> On Flex side I implement it like this.
>   
>  
>   
> function SO(){
>   
>       SharedObject.defaultObjectEncoding  = flash.net.ObjectEncoding.AMF0;
>   
>                   
>   
>       so = SharedObject.getRemote("mySO", nc.uri, true);
>   
>       so.client = this;
>   
>       so.connect(nc);         
>   
> }
>   
> /*
>   
>       This method I want to be called on every SO subscriber:
>   
> */
>   
> private function chatReceive(rest:Array):void{
>   
>       mx.controls.Alert.show("chatReceive: "+rest[0]);
>   
>       var cairngormEvent:CairngormEvent = new
> CairngormEvent(CoopController.CHAT_RECEIVE);
>   
>       cairngormEvent.data = rest[0];
>   
>      
> CairngormEventDispatcher.getInstance().dispatchEvent(cairngormEvent);
>   
> }
>   
>  
>   
> public function chatSend(message:String):void{
>   
>  
>   
>       //When I call this, chatReceive is not called, why?        
>   
>  
>   
> so.send("chatReceive",message);
>   
>       
>   
> //OR when I call this to make Red5 to manage it, the server side
> method is called OK, but the chatReceive method on Flex side is not called.
>   
>       nc.call("chatSend",null, message);
>   
> }
>   
>  
>   
> Red5 method:
>   
>       public void chatSend(String message){
>   
>             IScope room = Red5.getConnectionLocal().getScope();
>   
>             ISharedObject so = getSharedObject(room, "mySO");
>   
>             ArrayList<String> l = new ArrayList<String>();
>   
>             l.add(message);
>   
>             // This is even called, because I have implemented
> Red5’s shared objects Listeners, and it is called, but not on Flex side
>   
>             so.sendMessage("chatReceive", l);
>   
>       }
>   
>  
>   
> So how do I reach to call „chatReceive“ method on every subscriber using 
> sharedobjects.
>   
>  
>   
> Maybe it’s my bad Flex implementation. I dont know.
>   
>  
>   
> Thank you for everything.
>   
>  
>   
> Tom
>   
> Tom
>   
>   
>     


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

Reply via email to