yangshuxin1989 发表于 2012-10-9 18:04:49

请问怎么输出lr_xml_get_values里的其中一个值

Action()
{
        web_service_call( "StepName=getSupportCityString_101",
                "SOAPMethod=WeatherWS|WeatherWSSoap|getSupportCityString",
                "ResponseParam=response",
                "Service=WeatherWS",
                "ExpectedResponse=SoapResult",
                "Snapshot=t1349765211.inf",
                BEGIN_ARGUMENTS,
                "theRegionCode={NewParam}",
                END_ARGUMENTS,
                BEGIN_RESULT,
                END_RESULT,
                LAST);


        lr_xml_get_values("XML={response}",
                          "FastQuery=/Envelope/Body/getSupportCityStringResponse/getSupportCityStringResult/string",
                          "ValueParam=ParamValue_string",
                          LAST);

   // lr_output_message("ParmValue_string");
//這裡要怎麼輸出string為10的參數值

        web_service_call( "StepName=getWeather_102",
                "SOAPMethod=WeatherWS|WeatherWSSoap|getWeather",
                "ResponseParam=response",
                "Service=WeatherWS",
                "ExpectedResponse=SoapResult",
                "Snapshot=t1349766283.inf",
                BEGIN_ARGUMENTS,
                "theCityCode=1023",
                END_ARGUMENTS,
                BEGIN_RESULT,
                END_RESULT,
                LAST);
   

           return 0;
}

yangshuxin1989 发表于 2012-10-10 09:40:26

没人回复噶~

yangshuxin1989 发表于 2012-10-10 10:16:59

我自己来结贴吧~
lr_output_message(lr_eval_string("FastQuery result = {ParamValue_string}"));
写上这句话就可以输出string10的值

yangshuxin1989 发表于 2012-10-10 10:17:16

我自己来结贴吧~
lr_output_message(lr_eval_string("FastQuery result = {ParamValue_string}"));
写上这句话就可以输出string10的值
页: [1]
查看完整版本: 请问怎么输出lr_xml_get_values里的其中一个值