.net http处理程序重定向到rtmp和flex
我有一个 http 处理程序 (.ashx
),用于根据 id 显示图像、swf 或 flv。 因此,例如 http://www.example.com/myHandler.ashx?id= 1234 它显示 id 1234 的图像。我使用它作为图像标签或 swf 加载器或 Flex 中视频显示的源。 在我的处理程序中,如果该项目是视频,我只需将请求重定向到渐进式下载视频 (flv
) 的 http 地址。 效果很好。 但如果我想使用 rtmp 协议将请求重定向到流媒体服务器,它不会执行任何操作。 有什么想法吗? 是否可以重定向到 http 地址以外的任何地址?
我还有用于 dot net 的 weborb
,它显然具有可用的 rtmp 隧道。 可以这样设置请求吗?
I have an http handler
(.ashx
) that I use to display an image or swf or flv based on the id. So, for instance http://www.example.com/myHandler.ashx?id=1234 it displays the image for id 1234. I am using this as a source for an image tag or swf loader or video display in flex. In my handler if the item is a video I just redirect the request to the http address of the progressive download video(flv
). That works great. But if I want to redirect the request to a streaming server using the rtmp protocol, it doesn't do a thing. Any thoughts? Is it even possible to redirect to anything other than a http address?
I also have weborb
for dot net available which apparently has rtmp tunneling available. Is it possible to set up the request in that way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www.example.com/myHandler.ashx?id=1234
使用 Querysting 获取 id 并使用 get 存储过程检索图像并返回。稍后在图像 src 中分配该返回路径
http://www.example.com/myHandler.ashx?id=1234
Use the Querysting to get the id and use the get stored procedure to retrive the image and return..later assing that return path in the image src