Flex/BlazeDS 和 Tomcat 之间的 HTTPRequest 参数大小是否有限制?

发布于 2024-09-08 23:39:55 字数 257 浏览 6 评论 0原文

我们有一个带有 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 技术交流群。

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

发布评论

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

评论(2

兔小萌 2024-09-15 23:39:57

在 server.xml 的 Connector 配置中添加 maxPostSize。例如,

<Connector port="80"               
 ...
 maxPostSize="4097152" />

Add maxPostSize in Connector configuration in server.xml. For example,

<Connector port="80"               
 ...
 maxPostSize="4097152" />
沐歌 2024-09-15 23:39:57

您可以在 services-config.xml 文件中增加 BlazeDS 的日志记录详细程度:

<target class="flex.messaging.log.ConsoleTarget" level="Debug">

这应该会显示服务器正在接收的内容。

You can increase the logging verbosity of BlazeDS in the services-config.xml file:

<target class="flex.messaging.log.ConsoleTarget" level="Debug">

That should show you what the server is receiving.

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