.net http处理程序重定向到rtmp和flex

发布于 2024-07-08 12:57:38 字数 508 浏览 8 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

是你 2024-07-15 12:57:38

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文