|
B/S系统,ORACLE数据库
Action.c(163): web_url("blank.html") highest severity level was "warning", 0 body bytes, 200 header bytes [MsgId: MMSG-26388]
Action.c(171): web_custom_request("frameset_2") was successful, 8410 body bytes, 280 header bytes, 128 chunking overhead bytes [MsgId: MMSG-26385]
Action.c(187): Error -26627: HTTP Status-Code=404 (Not Found) for "http://192.168.***.***:8088/birt/preview?__imageid=file1f1235b12384967cd04.gif" [MsgId: MERR-26627]
Action.c(187): Warning -26200: At least one of the resources specified by EXTRARES has not been downloaded due to the above error(s) [MsgId: MWAR-26200]
Action.c(187): web_url("preview") highest severity level was "ERROR", 952 body bytes, 150 header bytes [MsgId: MMSG-26388]
Action.c(187): Notify: Transaction "日报表" ended with "Fail" status (Duration: 4.5617).
file1f1235b12384967cd04.gif 这个图片应该是个动态产生的,因为每次都是产生不一样的图片,所以这里脚本中改了:
char *jpgname=(char*)malloc(50);
web_url("preview",
"URL=http://192.168.***.***:8088/birt/preview?__imageid={lr_save_string(*jpgname)}",
"Resource=0",
同时看了网上资料修改了 runtime setting->browser emulation->simulate a new user each iteration关闭的。
录出的脚本仍提示此错误。(在报表打开时看脚本好象是先申请一空白的blank页面,再将数据显示在界面上,设置断点进去,只看得到界面,数据没有显示,而在preview的时候,直接跳出提示页面错误,连退出脚本也没有跳进去执行。) |
|