chuhaiyan 发表于 2014-6-27 10:56:21

lr用http协议调用wenservise ,函数web_custom_request来实现

本帖最后由 chuhaiyan 于 2014-6-27 11:11 编辑

lr用webservise协议用web_service_call函数实现没有问题,但是并发的用户数多的话会lr会报错
所以用http协议调用web_service_call,函数web_custom_request来实现,
之前用过这方法都可以,现在报错了

chuhaiyan 发表于 2014-6-27 11:01:23

本帖最后由 chuhaiyan 于 2014-6-27 11:04 编辑

web_add_header("SOAPAction", "\"\"");
    web_add_header("User-Agent", "XML Spy");
web_add_header("Content-Type","text/xml");
    web_custom_request("soap",
   "URL=http://XXXXXXX/mobileOrderRemote.ws",
   "Method=POST",
   "Resource=0",
   "RecContentType=text/xml",
   "Mode=HTML",
   "EncType=text/xml;charset=utf-8",
    "Body=<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:mob=\"http://XXXXXXX/mobileOrderRemote.ws\"><soapenv:Header/><soapenv:Body><mob:rushOrderFeedBack><jsessionId>0625145140675ypxl</jsessionId><json>{\"faultCause\":\"rush_auses3\",\"faultSolution\":\"4\",\"faultLevel\":\"19\",\"userId\":\"1000405\",\"userName\":\"XXXX\",\"orderId\":\"223539\",\"orderType\":\"3\",\"isPartener\":\"0\",\"partenerPosition\":\"\",\"partenerTime\":\"\",\"mtainResult\":\"1\",\"mtainNote\":\"\",\"mtainDetail\":\"111111\",\"remark\":\"6666666666666\"}</json><!--Optional:--><materialed>4,8</materialed></mob:rushOrderFeedBack></soapenv:Body></soapenv:Envelope>",
LAST);

chuhaiyan 发表于 2014-6-27 11:05:07

Body的内容,我是用soapui的中弄的,格式调整了一下

chuhaiyan 发表于 2014-6-27 11:06:14

哪位大侠看看怎么回事,之前我也是这样做的,是ok的,但是现在不知道就不行了,不知道是不是web_add_header函数不对

wangyueyong1 发表于 2014-7-1 15:39:58

1.注意body 段数据正确
2.注意body段里面中文的格式,是utf-8 还是其他,有些系统会因格式不对报错
3.注意发送/接收的Content-Type
这里看是的发送接收的类型不对。。。应该是json类型
页: [1]
查看完整版本: lr用http协议调用wenservise ,函数web_custom_request来实现