|
我们在做对WebService的压力测试(工具:Loadrunner),其中有个WebService的接口函数如下:
public string getBillState(string strLoginInfo, DataTable dt,ref DataTable dtResult)
我们使用webservice协议编写的脚本如下:
web_service_call( "StepName=getBillState_102",
"SOAPMethod=WebService.WebServiceSoap.getBillState",
"ResponseParam=response",
"Service=WebService",
"Snapshot=t1263886029.inf",
BEGIN_ARGUMENTS,
"strLoginInfo=",
"xml:dt="
"<dt></dt>",
"xml:dtResult="
"<dtResult></dtResult>",
END_ARGUMENTS,
BEGIN_RESULT,
END_RESULT,
LAST);
上面是参数没有具体赋值的脚本。
设置参数的时候,我把一个具体的DataTable转换成了XML格式:
<DocumentElement>
<coplistno>
<cop_list_no>0000189914</cop_list_no>
<state>1</state>
</coplistno>
<coplistno>
<cop_list_no>0000109914</cop_list_no>
<state>2</state>
</coplistno>
</DocumentElement>),
但是拷到脚本里的时候标签不能解析。
"xml:dt="
"<dt>"
"<DocumentElement>"
"<coplistno>"
"<cop_list_no>0000189914</cop_list_no>"
"</coplistno>"
"<coplistno>"
"<cop_list_no>0000109914</cop_list_no>"
"</coplistno>"
"</DocumentElement>"
"</dt>",
报错:“Action.c(35): Error: InvokeMethod failure: Unable to deserialize node coplistno in path '/dt/coplistno[1]'.”
各位高手帮帮忙 |
|