ysh0033 发表于 2010-7-2 14:04:57

xml页面请求,脚本该如何实现,急!

客户端向服务器提交请求时, 为一个xml页面。
<?xml version="1.0" encoding="utf-8"?>
<RRSRequest>
    <TransationId>25</TransationId>
<SecurityId>c21f5</SecurityId>
</RRSRequest>


脚本中该如何实现?

skyzhu 发表于 2010-7-2 14:25:55

web_custom_request("名字随便取",
"Method=POST",
"URL=提交目标地址",
"Body=<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n"
"<RRSRequest>\r\n"
"    <TransationId>25</TransationId>\r\n"
"<SecurityId>c21f5</SecurityId>\r\n"
"</RRSRequest>"
LAST);

ysh0033 发表于 2010-7-2 15:03:52

:lol 非常感谢。。

msnshow 发表于 2010-7-2 21:18:45

这个是把XML文件当做内容提交吧
页: [1]
查看完整版本: xml页面请求,脚本该如何实现,急!