【发布时间】:2012-02-02 18:37:29
【问题描述】:
所以我试图弄清楚什么 oracle 表单应用程序正在发送到服务器(可能将其用于负载测试)。 Fiddler 告诉我示例请求的标头如下所示:
POST http://server:9001/forms/lservlet;jsessionid=[long string] HTTP/1.1
Pragma: 81
Content-type: application/octet-stream
Cache-Control: no-cache
User-Agent: Mozilla/4.0 (Windows XP 5.1) Java/1.6.0_30
Host: server:9001
Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
Connection: keep-alive
Content-Length: 39
而且正文看起来像是加密/压缩的。问题是:正文发生了什么(压缩、解密)以及如何获得可读字符串?或者至少我可以通过编程方式发送的字节数?
编辑 好吧,如果我去 fiddler 的 HexView 那里,我有很好的十六进制表示已发送的内容。不过,仍然不清楚客户端对数据包主体做了什么。
编辑 2 似乎没有人喜欢破解 oracle 表单数据包。无论如何,为了结束这个,我得出了一个结论:如果你发送一个与之前相同的 http 数据包(比如在表单中模仿搜索) - 服务器会回答
ifError:0/FRM-93618: fatal error reading data from runtime process
Contact your system administrator.
然后应用程序本身会抛出
FRM-92104: A network error or server failure has occurred. The request was sent to the
wrong application server (not the one which created the session). The Forms client has
attempted to migrate the session %s time(s) without success. You will need to restart your application.
如果有人能解释为什么会这样,那就太好了。
【问题讨论】:
-
有什么进展吗?我有一个问题可能会从中受益。
-
@Jeff Burdges 不,很遗憾没有进展。
-
我发现旧版本的 Oracle Forms 直接通过 SQL 进行交互。如果这仍然是真的,那么也许它只是打包了 Oracle SQL 查询。 stackoverflow.com/questions/11118851/…
标签: oracle http servlets oracleforms oracle-fusion-middleware