如何设置webservice参数的最大长度
系统的配置是:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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'