hello everyone
there is a problem with mutilple edge server connection.
i can connect the orgin server with such
URI:"rtmp://edge1/?rtmp://orgin/app"
however,the connection has been rejected when i try to use 2 edge servers
before orgin server.and the URI like
this:"rtmp://edge0/?rtmp://edge1/?rtmp://orgin/app"

anybody know why that and how to solove?thank you!

and this is my client code to check the conneciton status
var server="rtmp://edge0/?rtmp://edge1/?rtmp://orgin/app"
var nc=new NetConnection()
nc.onStatus=function(info)
{
trace(info.code)
}
nc.connect(server);