jboss 4 505 错误 VPN 不支持 http 版本
我们正在从 .NET、C#、Web 服务客户端之一调用在 JBoss 4 上运行的 Web 服务 (jaxws)。它在我们的本地网络上工作得很好,但是当我们连接到我们的 VPN 在生产环境上进行测试时,它会抛出 505 错误(不支持 HTTP 版本)。在我们的本地和生产计算机上,我们已经测试了来自 Java 客户端的服务,同时仍然连接到 VPN,并且它对于 Java 客户端运行良好
关于此问题有任何提示吗?
We are calling a web service (jaxws) running on JBoss 4 from one of our .NET, C#, web services clients. It is working just fine on our local network, but as soon as we connect to our VPN to test on the production environment it throws a 505 error (HTTP version not supported). On both our local and production machines, we have tested the services from a Java client while still connecting to VPN and it's working fine for the java client
Any hint regarding this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜测您的生产 Web 服务器的配置与测试 Web 服务器的配置不同;它的限制性更强,不允许使用您想要的 HTTP 版本。询问生产服务器的服务器管理员支持哪些版本的 HTTP。
另一种可能性是,在 VPN 上,您有一个中间代理,它将您的请求从一个版本的 HTTP 转换为另一个版本。向网络管理员寻求帮助。
I would guess that your production web server is not configured the same as your test web server; it is more restrictive and not allowing the HTTP version that you want. Ask the server admin for your production server what versions of HTTP are supported.
Another possibility is that on the VPN you have an intermediate proxy that is converting your request from one version of HTTP to another. Ask a network admin for help.