有一个Web服务soap请求,我想关联soap响应中的值,我使用:
lr_xml_get_values("XML={response}", "Value=myvalue", "Query=//someplaceinthexmlresponse", LAST);
但我想用上面的语句保存几个参数。有没有办法说出来
"Ord=All" in the lr_xml_get_values function?
我的soap响应通常存在3个嵌套值,我想保存以供以后关联。
使用regualt web_custom_request我通过说:
解决了这个问题web_reg_save_param("helloworld", "LB=<id>", "RB=</id>", Search=Body", "Ord=All", LAST);
我怎么说Ord=All
对于使用lr_xml_get_values函数的soap请求?
答案 0 :(得分:0)
lr_xml_get_values("XML={response}",
"Value=myvalue",
"Query=//someplaceinthexmlresponse",
"SelectAll=yes",
LAST);