Hello everyone, I've been struggling with the classic problem of rtmp connections failing to function because of a few clients specific proxy / firewall configuration. After lurking the adobe blogs, coder articles and documentation, i've ran out of ideas on how to get rtmp fallback to rtmpt tunneling.
As I understood recently, the rtmp fallback mechanism is not automatic and need a wee bit of tweaking (seen on http://www.infoaccelerator.net/blog/post.cfm/setting-up-rtmpt-failover-on-lcds). yet, I cannot get to work the setup described in the article. here is our services-config : <!-- NIO based endpoints --> <channel-definition id="my-rtmp" class="mx.messaging.channels.RTMPChannel"> <endpoint url="rtmp://{server.name}:2043" class="flex.messaging.endpoints.RTMPEndpoint"/> <properties> <connection-idle-timeout-minutes>0</connection-idle-timeout-minutes> <block-rtmpt-polling-clients>true</block-rtmpt-polling-clients> </properties> </channel-definition> <channel-definition id="my-rtmpt" class="mx.messaging.channels.RTMPChannel"> <endpoint url="rtmpt://{server.name}:80" class="flex.messaging.endpoints.RTMPEndpoint"/> <properties> <block-rtmpt-polling-clients>false</block-rtmpt-polling-clients> <idle-timeout-minutes>20</idle-timeout-minutes> </properties> </channel-definition> before event thinking of setting up the fallback mechanism, I'm trying to have the connections working through the my-rtmpt channel and it fails. The classic rtmp channel works perfectly and we've never had any problem with it (before). I've tried to define the rtmpt channel with no ports specificaly bound; I've also tried to explicitly bind it to port 80 (like in the configuration above) and set the jboss server.xml default web instance to 8081 but it also fails (or by keeping it on 8080). I'm starting to seriously run out of options here so if anyone could help me i'd be greatly appreciative. If you don't have time to help, any link to a related post would be greatly appreciated, or even better : a working example of a correct setup of rtmp fallback mechanism. Thank you for your time and thanks in advance for the help.

