|
|
Rank: Apprentice Coder Groups: Member
Joined: 5/25/2011 Posts: 21 Points: 69
|
Hi, I need to know how to connect to a determined room from a C# application. I know that from a Flex app one should make the following call: Code:nc.connect( urlServer + "/" + weborbApplicationName + "/" + roomName ); How to do the same from a C# app? Is the following code correct? Code:rtmpClient.connect("localhost", 2037, "AppName", new object[] { roomName }); thanks, Marcelo
|
|
Rank: Apprentice Coder Groups: Member
Joined: 5/25/2011 Posts: 21 Points: 69
|
Hi, Found the solution. It works this way: Code:rtmpClient.connect("localhost", 2037, "AppName" + "/" + "roomName", null); Regards,
|
|
Rank: Apprentice Coder Groups: Member
Joined: 5/25/2011 Posts: 21 Points: 69
|
Hi, Does anyone knows how should I call a RTMP client that is running over RTMP Tunneling? I've tried going something like this: Code:rtmpClient.connect("localhost", 80, "myApp"); But it is not working. I know that the WebORB is running fine. I've used the Flex Chat App (from documentation) to test. Thanks
|
|
Rank: Administration Groups: Administration
, Member
Joined: 9/10/2009 Posts: 320 Points: 778 Location: US
|
rtmpClient.connect("rtmpt://localhost/myApp");
|
|
Rank: Apprentice Coder Groups: Member
Joined: 5/25/2011 Posts: 21 Points: 69
|
Hi Cyril, Cyril wrote:rtmpClient.connect("rtmpt://localhost/myApp"); Unless I'm doing something wrong, there is no overload that takes 1 argument for the connect method. Regards, Marcelo
|
|
|
Guest |