Red5:服务器应用程序框架和 helloworld
任何人都可以为 Red5 应用程序提供更新的应用程序框架吗?据我所知,日志系统从 Log4j 更改而来。我一直在寻找一些教程来设置所有内容,但无法真正找到简单有效的东西。 上瘾了,谁能提供一个关于服务器应用程序和 Flex 客户端的简单教程吗?
提前致谢!
Can anyone provide an updated application skeleton for a Red5 application? From what I have found the logging system changed from Log4j. I've been looking for some tutorials just to setup everything but can't really find something that simply works.
In addiction, can anyone provide a simple tutorial with a server application and Flex client?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我为此挣扎了很多。这个参考对我有用:
http://fossies.org/unix/privat/red5-1.0.0-RC2.tar.gz:a/red5-1.0.0/doc/reference/html/logging-setup.html< /a>
技巧是删除所有 log4j.properties 或 log4j.xml 文件,并从 web.xml 中删除所有“log4j”侦听器
创建一个 logback-myApp.xml,其中 myApp 是您的名称webapp 并将其放在您的 webapp 类路径(WEB-INF/classes 或 WEB-INF/lib 内的应用程序 jar 中)中
,我的应用程序是这样的:
然后:
客户端操作脚本如下所示:
I struggled a lot with that.. This reference worked for me:
http://fossies.org/unix/privat/red5-1.0.0-RC2.tar.gz:a/red5-1.0.0/doc/reference/html/logging-setup.html
The trick was to Remove any log4j.properties or log4j.xml files and Remove any "log4j" listeners from the web.xml
Create a logback-myApp.xml where myApp is the name for your webapp and place it on your webapp classpath (WEB-INF/classes or in your application jar within WEB-INF/lib)
and im my app i did:
and then:
the clients actionscript looks like this: