huoxingyinzi 发表于 2008-12-21 02:57:55

soap:header 元素关于在soap_request 和 web_service_call 函数中指定

loadrunner中使用webserivce协议录制时存在一定的局限性:
o        WSDL 导入向导只引用 soap:body 元素,不引用 soap:header 元素。
而soap:header 元素可以在soap_request 和 web_service_call 函数中指定。
不知道有那位朋友写过这方面的脚本,麻烦共享一下!

huoxingyinzi 发表于 2008-12-21 03:00:34

小妹的脚本如下:
Action()
{
    "SOAPHeader=<soap:Header>    <CredentialSoapHeader xmlns=\"http://www.bellpv.ca/VASPOS2/\""
                              ">    <authentication></authentication>   <username>VASPOS2</username>      <password>vp2aA2@1234</password>    "
                              "</CredentialSoapHeader></soap:Header>",
        web_service_call( "StepName=getCustomerProfile_101",
                "SOAPMethod=Pipe.PipeSoap.getCustomerProfile",
                "ResponseParam=response",
                "Service=Pipe",
                "Snapshot=t1229796794.inf",
      BEGIN_ARGUMENTS,
                "xml:request=<request><accessPassword>auto string</accessPassword><authRequired>"
                                "N</authRequired><partnerID>GM</partnerID><timestamp>auto string</timestamp>"
                                "<userID>b1shen01</userID></request>",
                END_ARGUMENTS,
                BEGIN_RESULT,
                END_RESULT,
                LAST);

   
        lr_think_time(3);

        return 0;
}

运行返回没有错,但是在response中返回中不正确:
<responseInfo>
<responseCode>98</responseCode>
<responseDescription>Invalid Authentication Credentials</responseDescription>
<accessInfo />
<personalInfo />
</responseInfo>
</getCustomerProfileResult>
</getCustomerProfileResponse>
</soap:Body>
</soap:Envelope>

有懂的朋友能看看吗?

cocayang 发表于 2011-6-19 20:06:59

我也遇到类似问题, SOAPHeader在客户段被加密为密文。

cocayang 发表于 2011-6-19 20:07:49

1.正在考虑如何生成密文。
2.考虑如何填充SOAPHeader区
页: [1]
查看完整版本: soap:header 元素关于在soap_request 和 web_service_call 函数中指定