为 BlazeDS 配置端口
我是 BlazeDS 的新手。我已经下载了 BlazeDS 4 并安装在我的 Tomcat 服务器上。如何让它监听不同于 8080 的端口?我更改了 services-config.xml
中通道配置中的端口,并且我的客户端应用程序发送了对新端口的请求,但它们失败了。如何让服务器监听自定义端口?谢谢。
I'm new to BlazeDS. I've downloaded BlazeDS 4 and installed in on my Tomcat server. How can I make it to listen to port distinct from 8080? I change port in channels configuration in services-config.xml
, and my client application sends requests for new port, but they fail. How can I make server listen to custom port? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于 BlazeDS 在容器 (Tomcat) 内运行,因此它将侦听与其运行的 Web 应用程序相同的端口。
我不相信有办法解决这个问题。如果您使用 apache 作为代理,则所有 blaze 连接都应该通过代理正常工作。
Since BlazeDS runs within the container (Tomcat), it will listen on the same ports as the web application it is running within.
I do not believe there is a way around this. If you are using apache as a proxy, all the blaze connections should work normally through the proxy.
services-config.xml 中不应有任何硬编码端口。相反,请保留初始方式(例如:
如果您使用 BlazeDS 交钥匙安装中的 Tomcat 服务器,请转到 blazeds-folder/tomcat/conf/,找到 server.xml 文件并将 8400 替换为 8080。重新启动服务器。
如果没有,查看 Tomcat 文件夹中的同一文件,这是配置连接器的文件。
You should not have any hard coded port in services-config.xml. Instead, keep the initial way (like that:
If you are using the Tomcat server from your BlazeDS turnkey installation go to blazeds-folder/tomcat/conf/, locate server.xml file and replace 8400 with 8080. Restart the server.
If not, take a look on the same file on your Tomcat folder, that's the file where the connectors are configured.