fiddler和oracle融合中间件形式

问题描述 投票:1回答:2

所以我想弄清楚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.

如果有人能说清楚为什么会如此,那将会很棒。

oracle http servlets oracleforms oracle-fusion-middleware
2个回答
1
投票

通过将HTTP Server指令KeepAlive设置为Off可以解决该问题。这是表单的推荐设置。

Oracle建议使用Oracle Enterprise Manager 11g Fusion Middleware Control [http://localhost:7001/em,其中7001是默认端口]来修改配置文件。要修改此设置,请完成以下操作:

  • 在导航器窗格中,单击OHS下的Web Tier节点。
  • 在此节点的右上角,单击Oracle HTTP Server - > Administration - > Advanced Configuration
  • 从下拉列表中选择httpd.conf
  • KeepAlive参数设置为Off
  • 应用更改。
  • 您需要重新启动HTTP Server才能使此更改生效。

或者,直接编辑文件

%DOMAIN_HOME%\config\config.xml

(在Unix上:$ORACLE_INSTANCE/config/config.xml

通过从KeepAlive手动设置On参数到Off


0
投票

Oracle Forms使用HTTP上的专有通信机制。 TestNext软件破解了它。它们为Oracle Forms提供了一个负载测试解决方案,允许用户记录和参数化Oracle Forms交互......

http://www.testnext.com/

© www.soinside.com 2019 - 2024. All rights reserved.