Rank: Newbie Coder Groups: Member
Joined: 6/26/2012 Posts: 3 Points: 9 Location: Ukraine
|
Hi!
I have .net client and .net service which connects through WebOrb. I am using RTMP - protocol for messaging. But, if client don't send messages to service some time, it will broke connection.
Connection is opened next way:
RTMPClient Client = new RTMPClient();
Client.connect(192.168.1.78, 2037, HPPLive, new object[0], new ConnectionHandler());
Flex - client in similar condition works correct.
|
 Rank: Administration Groups: Administration
Joined: 8/21/2006 Posts: 1,607 Points: 4,082 Location: Frisco, TX
|
I suspect the connection breaks because of inactivity. Do you have a custom application handler on the server-side? Mark
Mark Piller Midnight Coders, Inc. twitter: midnightcoderblog: blog.themidnightcoders.comwebsite: www.themidnightcoders.com
|
Rank: Newbie Coder Groups: Member
Joined: 6/26/2012 Posts: 3 Points: 9 Location: Ukraine
|
Thanx for reply!
What time span must between invokes to server, to maintain connection alive? Can be this time span regulated in WebORB config?
Is there are a way to keep connection alive automatically (without explicit invokes)?
Thanx again.
|