51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2111|回复: 5
打印 上一主题 下一主题

[原创] 关于域访问的问题

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2007-10-12 16:56:34 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
Action()
{
      web_set_user("xxx\\xxx","xxx","xxx:80");

      web_url("index.htm",

                   "URL=http://xxx/xxx/Pages/index.htm",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=",
                "Snapshot=t1.inf",
                "Mode=HTML",
                EXTRARES,
                "Url=images/c1-1_01.gif", "Referer=http://xxx/Pages/top.aspx", ENDITEM,
                "Url=images/c1-1_07.gif", "Referer=http://xxx/Pages/top.aspx", ENDITEM,
                "Url=images/a-1-3.gif", "Referer=http://xxx/Pages/top.aspx", ENDITEM,
                "Url=images/zhong_08-2.gif", "Referer=http://xxx/Pages/top.aspx", ENDITEM,
                "Url=images/headerbg.gif", "Referer=http://xxx/Pages/Main.aspx", ENDITEM,
                "Url=../WebResource.axd?d=iCnCQWapSrPFOVfSKyy_I99NQTDbVQswvawyrcjM1jA1&t=633221392117894435", "Referer=http://xxx/Pages/tree.aspx", ENDITEM,
                "Url=../WebResource.axd?d=iCnCQWapSrPFOVfSKyy_I4Gxwwt1VfXcmNqOAXmiGIo1&t=633221392117894435", "Referer=http://xxx/Pages/tree.aspx", ENDITEM,
                "Url=../WebResource.axd?d=iCnCQWapSrPFOVfSKyy_I-Ghlpb7ZE7RP8xIYQ3p1Oc1&t=633221392117894435", "Referer=http://xxx/Pages/tree.aspx", ENDITEM,
                "Url=../WebResource.axd?d=iCnCQWapSrPFOVfSKyy_I1oBhbtVccNMPVBcruZq2CY1&t=633221392117894435", "Referer=http://xxx/Pages/tree.aspx", ENDITEM,
                "Url=../WebResource.axd?d=iCnCQWapSrPFOVfSKyy_I0TeA5Vm4ldAniyrrp0fXyE1&t=633221392117894435", "Referer=http://xxx/Pages/tree.aspx", ENDITEM,
                "Url=../WebResource.axd?d=iCnCQWapSrPFOVfSKyy_I7FBDJx3Y7DdAPulipzvlgc1&t=633221392117894435", "Referer=http://xxx/Pages/tree.aspx", ENDITEM,
                LAST);

        web_url("Main.aspx",
                "URL=http://xxx/Pages/Main.aspx",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=http://xxx/Pages/tree.aspx",
                "Snapshot=t2.inf",
                "Mode=HTML",
                EXTRARES,
                "Url=images/headerbg.gif", ENDITEM,
                LAST);

        return 0;
runr后,执行日志里显示如下信息:
Starting iteration 1.
Starting action Action.
Action.c(6): web_set_user was successful          [MsgId: MMSG-26392]
Action.c(8): Error -26612: HTTP Status-Code=500 (Internal Server Error) for "http://xxx/xxx/Pages/index.htm"          [MsgId: MERR-26612]
Action.c(8): 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(8): web_url("index.htm") highest severity level was "ERROR", 3304 body bytes, 959 header bytes          [MsgId: MMSG-26388]
Ending action Action.
Ending iteration 1.

请问这个问题怎么解决呢
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

  • TA的每日心情
    开心
    2014-12-26 13:34
  • 签到天数: 1 天

    连续签到: 1 天

    [LV.1]测试小兵

    6#
    发表于 2007-10-29 21:03:28 | 只看该作者
    Action.c(8): Warning -26200: At least one of the resources specified by EXTRARES has not been downloaded due to the above error(s)          [MsgId: MWAR-26200]


    某些请求的附加资源没有下载成功。
    你可以把Web请求下的 EXTRARES  至 LAST 之间的东西删掉。

    或将录制选项改为:基于URL模式,就可以定位到错误的资源

    Action.c(8): web_url("index.htm") highest severity level was "ERROR", 3304 body bytes, 959 header bytes         

    web_url("index.htm")  请求失败!应该就是附加资源下载出错所致
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    5#
    发表于 2007-10-26 17:28:00 | 只看该作者
    Action.c(8): Error -26612: HTTP Status-Code=500 (Internal Server Error
    这不说了 是服务器的问题
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    4#
     楼主| 发表于 2007-10-26 16:20:50 | 只看该作者
    IE能访问
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    奋斗
    2015-6-25 18:04
  • 签到天数: 1 天

    连续签到: 1 天

    [LV.1]测试小兵

    3#
    发表于 2007-10-17 08:46:45 | 只看该作者
    用IE访问正确??
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    2#
     楼主| 发表于 2007-10-16 23:34:18 | 只看该作者
    没人遇到这种情况吗,自己顶一下
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-9-27 15:38 , Processed in 0.086357 second(s), 26 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表