如何设置webservice参数的最大长度

发布于 2024-11-28 07:25:20 字数 186 浏览 0 评论 0原文

系统的配置是:

  • Web 服务器:WEBrick

  • 软件环境:ruby on Rails

当浏览器向浏览器传递超过 400 字节的参数时, 服务器,服务器返回414代码(Request-URI Too Large)。

如何解决这个问题呢?

the system's configuration is:

  • web server: WEBrick

  • software enviroment: ruby on rails

when the browser passes more than 400 bytes parameters to the server, the server returns 414 code(Request-URI Too Large).

How to solve this problem?

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

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

发布评论

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

评论(1

九命猫 2024-12-05 07:25:20

Ryan Bates 在这里回答了您的问题:https://github.com/intridea/omniauth/issues/43< /a>

简而言之:在开发中使用 mongrel。


一些有用的细节:

URI 限制因客户端、服务器甚至浏览器而异。

浏览器

IE 的限制约为 2kb,firefox 为 65kb。由于 Api 是从服务器触发的,所以并不那么烦人。

服务器

Nginx的默认限制是32位4kb和64位8kb。

Apache 的默认值为 8190 字节。

两者都可以在配置中更改。

来源:优秀的“RoR 面向服务的设计”

Ryan Bates answered your question here: https://github.com/intridea/omniauth/issues/43

In short: use mongrel in development.


A few useful details:

The URI limits vary given client, server and even browser.

Browsers

IE has a limit around 2kb, firefox 65kb. Since Api are triggered from servers it's not that annoying.

Servers

Nginx's default limit is 4kb for 32bits and 8kb for 64bits.

Apache's default is 8190 bytes.

Both can be changed inside config.

Source: the excellent 'Service Oriented Design with RoR'

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