ColdFusion Web 服务 - 连接被拒绝

发布于 2024-09-27 08:28:23 字数 165 浏览 3 评论 0原文

从客户端计算机连接到 ColdFusion Web 服务时,我收到以下错误

org.apache.commons.httpclient.HttpException:连接被拒绝:连接(到 cfc 组件的实际链接)

有什么想法吗?

I am receiving following error while connecting to ColdFusion web service from client machine

org.apache.commons.httpclient.HttpException : Connection refused: connect ( actual link to cfc component )

any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

温柔戏命师 2024-10-04 08:28:23

检查远程计算机的防火墙配置。

Check the remote machine's firewall configuration.

鸩远一方 2024-10-04 08:28:23

使用 SOAP UI 工具测试远程 Web 服务。远程计算机的网络/防火墙可能存在问题。

Use SOAP UI tool to test the remote web-service. There could be problem with the network / firewall of the remote machine.

抹茶夏天i‖ 2024-10-04 08:28:23

Coldfusion Web 服务是否对内容进行 gzip 压缩?最近,当我们在服务器上启用 gzip 时,我遇到了类似的情况。

如果您正在进行 CFHTTP 调用,则需要传入以下内容以阻止 GZIP:

<cfhttpparam type="header" name="accept-encoding" value="deflate;q=0">
<cfhttpparam type="header" name="te" value="deflate;q=0">

Does the coldfusion web service gzip the content? I recently encountered something similar when we enabled gzip on our server.

If you are doing a CFHTTP call, you need to pass in the following to prevent GZIP:

<cfhttpparam type="header" name="accept-encoding" value="deflate;q=0">
<cfhttpparam type="header" name="te" value="deflate;q=0">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文