带Web服务的Red5无法从外部访问
如何通过 SOAP 公开 Red5 的 SharedObjects
最近,我阅读了此页面并开始完全按照示例生成 2 个类文件,并使用 wsgen 生成一个包含 2 个与我的函数名称匹配的文件的文件夹(1 个函数名称文件、1 个函数名称 + 响应文件)。
然后我把它放在red5服务器webapps下
我的端点发布地址是 http://localhost:8686/abc/def
我通过输入 http://localhost:8686/abc/def? 得到了一种模式。 WSDL。
一切都很好,但是,当我在外面尝试时,却不行。
我的路由器有到 dyndns.org 的链接。
根据正常情况。我想要 http://xyz.dyndns.org:8686/abc/def?WSDL 看看事情就OK了。但我得到的是 Firefox 无法建立连接,如果我使用 NetBeans 移动应用程序 Web 服务客户端查找 wsdl 文件,它会显示“连接被拒绝...”。
我在端口 5080、1935 和 8686 上打开了路由器防火墙,甚至 Windows 防火墙。我错过了什么吗?
How to expose Red5's SharedObjects through SOAP
Recently, I read this page and start to follow the example exactly to produce 2 class file and using the wsgen to produce a folder with 2 file which match to my function name (1 function name file, 1 function name + respond file).
Then I put it under red5 server webapps
My endpoint publish address is http://localhost:8686/abc/def
And I get a schema kind of thing by typing http://localhost:8686/abc/def?WSDL.
Everything fine, but, when I try outside, it can't.
My router has link to dyndns.org.
Based on normal case. I want to http://xyz.dyndns.org:8686/abc/def?WSDL to see thing is OK. But what I get is Firefox can't establish the connection, if I use NetBeans mobile application web service client to find the wsdl file, it will said "connection refused...".
I have on the router firewall and even windows firewall on ports 5080, 1935 and 8686. Did I miss something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您的服务器正在侦听
xyz.dyndns.org
主机名,而不是localhost
。如何启动 red5 Web 服务器?尝试寻找更改服务器主机名的选项(应该可以与端口号一起更改)。
Make sure your server is listening on the
xyz.dyndns.org
hostname and notlocalhost
.How do you start up the red5 web server? Try to look for an option to change the hostname of the server (should be changeable along with port number).