如何调用webservice接口?
现在我要用PHP调用一个WEBserviceWEBservice的地址为:http://www.xxxxx.com.cn/webservice/online.asmx方法...
现在我要用PHP调用一个WEBservice
WEBservice的地址为:http://www.xxxxx.com.cn/webservice/online.asmx
方法名:checkMember
此方法将返回一个整数..
PHP要怎么样来实现呢?麻烦将一些简单代码贴上来... 展开
WEBservice的地址为:http://www.xxxxx.com.cn/webservice/online.asmx
方法名:checkMember
此方法将返回一个整数..
PHP要怎么样来实现呢?麻烦将一些简单代码贴上来... 展开
1个回答
展开全部
PHP如何调用webservice接口
用PHP如何按照webservice接口已定义的格式进行调用?
POST /sendsms.asmx HTTP/1.1
Host: 172.16.18.4
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SendSms10198 xmlns="http://172.16.18.4:8000/">
<strMobile>string</strMobile>
<intType>int</intType>
<strMsg>string</strMsg>
</SendSms10198>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SendSms10198Response xmlns="http://172.16.18.4:8000/">
<SendSms10198Result>int</SendSms10198Result>
</SendSms10198Response>
</soap12:Body>
</soap12:Envelope>
这是给出来的说明
你请求这个地址就行了,在地址后加?WSDL
然后再请求web service里提供给你的方法,传进去需要的参数
方法的返回值就是你需要的数据
用PHP如何按照webservice接口已定义的格式进行调用?
POST /sendsms.asmx HTTP/1.1
Host: 172.16.18.4
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SendSms10198 xmlns="http://172.16.18.4:8000/">
<strMobile>string</strMobile>
<intType>int</intType>
<strMsg>string</strMsg>
</SendSms10198>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SendSms10198Response xmlns="http://172.16.18.4:8000/">
<SendSms10198Result>int</SendSms10198Result>
</SendSms10198Response>
</soap12:Body>
</soap12:Envelope>
这是给出来的说明
你请求这个地址就行了,在地址后加?WSDL
然后再请求web service里提供给你的方法,传进去需要的参数
方法的返回值就是你需要的数据
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询