Flex/BlazeDS 和 Tomcat 之间的 HTTPRequest 参数大小是否有限制?
我们有一个带有 Flex 前端的 Web 应用程序,通过 BlazeDS 向 Spring/Tomcat 后端发出请求。
我注意到,当我们在请求中发送的参数数据超过一定大小(例如 1.5M)时,它根本不会在 servlet 的请求中显示为参数。我们已验证该值是否填充在 Flex 端的请求中。当参数低于该大小时,效果很好。
有人见过这个吗?
这是发生在 BlazeDS 端还是 Tomcat 端?
有解决方法吗?
谢谢。
We have a web app with a Flex front end making requests to our Spring/Tomcat back end through BlazeDS.
I noticed when the data for a parameter we send in the request is over a certain size (something like 1.5M), it simply doesn't show up as a parameter in the request in our servlet. We've verified that the value is populated in the request on the Flex side. When the parameter is below that size, it comes through fine.
Has anyone seen this?
Is this happening on the BlazeDS side or the Tomcat side?
Is there a workaround?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 server.xml 的 Connector 配置中添加 maxPostSize。例如,
Add maxPostSize in Connector configuration in server.xml. For example,
您可以在 services-config.xml 文件中增加 BlazeDS 的日志记录详细程度:
这应该会显示服务器正在接收的内容。
You can increase the logging verbosity of BlazeDS in the services-config.xml file:
That should show you what the server is receiving.