为 BlazeDS 配置端口

发布于 2024-12-21 02:44:06 字数 171 浏览 1 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(2

枕梦 2024-12-28 02:44:06

由于 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.

微暖i 2024-12-28 02:44:06

services-config.xml 中不应有任何硬编码端口。相反,请保留初始方式(例如:

<endpoint url="https://{server.name}:{server.port}........

如果您使用 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:

<endpoint url="https://{server.name}:{server.port}........

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.

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