jiangkay0128 发表于 2013-1-28 14:34:11

webservice性能测试脚本编写问题,请教大侠

Action()
{


        web_service_call( "StepName=login_102",
                "SOAPMethod=LoginServiceProxyService|LoginServiceProxy|login",
                "ResponseParam=response",
                "Service=LoginServiceProxyService",
                "ExpectedResponse=SoapResult",
                "Snapshot=t1359354738.inf",
                BEGIN_ARGUMENTS,
                "xml:opt="
                        "<opt></opt>",
                END_ARGUMENTS,
                BEGIN_RESULT,
                END_RESULT,
                LAST);


return 0;
}


如何在脚本里写调用函数?
4)        入参说明:
入参类型: Object
入参格式:
{"type":"1",
"parameters":{
" username ":"xxxxx",
" password ":"xxxxx"
}}
其中:
type:入参类型为“1”
parameters:参数,包括用户名“username”和密码“password” ,username不可为空。
出参说明:
出参类型:String
出参格式:{“status”:”0”}或{“status”:”1”, “fail-reason”: ”error msg”}
其中:
                status:“0”接口调用成功;“1”接口调用失败
fail-reason:为错误信息

yangemil 发表于 2013-1-29 09:15:27

直接调用就可以,没有什么特殊的。

linneiwei 发表于 2013-2-20 20:11:29

可以先使用loadrunner的wsdl功能解析你们的webservice接口,直接录制脚本。
也可以使用kylinPET性能测试工具,录制很方便,界面直观显示XML内容,类似soapUI。又支持并发及监控,类似loadrunner。可到他们的官网下载www.kylinpet.com
页: [1]
查看完整版本: webservice性能测试脚本编写问题,请教大侠