|
hi,如题,现在碰到这个问题,想请教大侠。脚本如下:
char *new_MSOHTML;
//base64Binary
new_MSOHTML = (char *)ReadMSOHTML("ModifiedTestPiece");
lr_save_string(lr_eval_string(new_MSOHTML), "new_MSOHTML_value");
//save the document
web_service_call( "StepName=saveDocument",
"SOAPMethod=FatclientReviseRequestService.FatclientReviseRequest.saveDocument",
"ResponseParam=response",
"WSDL=C:/Documents and Settings/suzie/Desktop/FatclientReviseRequest.wsdl",
"UseWSDLCopy=1",
"Snapshot=t1170134507.inf",
BEGIN_ARGUMENTS,
"workItemId=22701",
"oldcontentIds=3605",
"contentNames=2.about this booklet / votre brochure.general.stnd.insaso.bklt.frn.slf.C070",
"newMSOHTML={new_MSOHTML_value}",
END_ARGUMENTS,
BEGIN_RESULT,
"saveDocumentReturn=Param_saveDocumentReturn",
END_RESULT,
LAST);
但new_MSOHTML_value的值不对。是不是这个转换有问题lr_save_string(lr_eval_string(new_MSOHTML), "new_MSOHTML_value")? 该如何做呢? |
|