0

在使用数据包嗅探器分析流量时,我们看到在完成向该服务器的 http 发布之前来自 weblogic 服务器的 http 响应。

在这种情况下,服务器上的jsp页面基本上是一个静态页面,此时对post的内容没有任何逻辑可做。

但是为什么服务器会在帖子完成之前发送响应?

我找到了有关如何配置服务器以忽略使用 Http post 的拒绝服务攻击的 Weblogic 文档。也许这就是正在发生的事情?

我认识的人以前没有人见过这种行为。也许一些精通 weblogic 的人会知道发生了什么。

谢谢

4

1 回答 1

0

I don't think that Weblogic is analyzing the JSP to determine whether it is static or not.

My guess is that either

  1. someone else was accessing the server at the same time
  2. you saw the answer to a previous request

[EDIT] To determine what is going on, I suggest to set a breakpoint in the JSP. If you still get an answer without hitting the breakpoint, something further up the stack must be intercepting the request (for example, a cache).

于 2009-02-16T09:27:42.580 回答