.net http handler redirected to rtmp and flex

I have http handler( .ashx) which I use to display an image of either swf or flv based on id. For example, http://www.example.com/myHandler.ashx?id=1234 displays the image for id 1234. I use this as the source for the image tag or swf loader or video image in flex. In my handler, if the item is a video, I simply redirect the request to the http address of the progressive downloadable video ( flv). This works great. But if I want to redirect the request to the streaming server using the rtmp protocol , it does nothing. Any suggestions? Is it possible to redirect to any address other than the http address?

I also have weborbfor an accessible point network that is apparently available for rtmp tunneling. Is it possible to configure the query this way?

+5
source share
1 answer

http://www.example.com/myHandler.ashx?id=1234

Use Querysting to get the identifier and use the get stored procedure to retrieve the image and return. Once again making sure the return path in the src image

+1
source

All Articles