首页 > 后端开发 > php教程 > php怎么调用.NET开发的webservice

php怎么调用.NET开发的webservice

WBOY
发布: 2016-06-13 10:36:03
原创
1152 人浏览过

php如何调用.NET开发的webservice
接口地址是:http://pi.f3.cn/F3WebService.asmx

要调用的方法是:

SendSMS 
短信发送 

大家看看短信接口应该怎么写?我老是调用不成功

我先说明下我的代码:

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?phpclass SendSMSParam{        public $ToUserText;     public $ToUserByte;     public $SMSContent;    public $PlanSendTime;    public $MSGType;     public $LongCode;}class SendSMS{    public $SMSParam;    public $ECECCID;    public $Password;}$userid=1234567;//接入账户$pwd="abcdefg";//接入密码$mobile="13800000000";//下发手机号$content="php测试短信";$client=new SoapClient("http://pi.f3.cn/F3WebService.asmx?WSDL");$SMSParam = new SendSMSParam();$SMSParam->ToUserText=$mobile;$SMSParam->SMSContent=$content;$SMSParam->MSGType=5;$SendSMSinfo=new SendSMS();$SendSMSinfo->SMSParam=$SMSParam;$SendSMSinfo->ECECCID=$userid;$SendSMSinfo->Password=$pwd;print_r($SendSMSinfo);$client->SendSMS($SendSMSinfo);?>
登录后复制


------解决方案--------------------
Fatal error: Uncaught SoapFault exception: [soap:Client] 服务器无法读取请求。 ---> XML 文档(2, 268)中有错误。 ---> 字符串“”不是有效的 AllXsd 值。 in
.....php:34 Stack trace: #0
.....php(34): SoapClient->__call('SendSMS', Array) #1 
.....php(34): SoapClient->SendSMS(Object(SendSMS)) #2
------解决方案--------------------
C/C code
<s:element minOccurs="0" maxOccurs="1" name="SMSParam" type="tns:SendSMSParam"/><s:element minOccurs="1" maxOccurs="1" name="ECECCID" type="s:long"/><s:element minOccurs="0" maxOccurs="1" name="Password" type="s:string"/><s:complexType name="SendSMSParam"><s:sequence><s:element minOccurs="0" maxOccurs="1" name="ToUserText" type="s:string"/><s:element minOccurs="0" maxOccurs="1" name="ToUserByte" type="s:base64Binary"/><s:element minOccurs="0" maxOccurs="1" name="SMSContent" type="s:string"/><s:element minOccurs="1" maxOccurs="1" name="PlanSendTime" type="s:dateTime"/><s:element minOccurs="1" maxOccurs="1" name="MSGType" type="tns:c"/><s:element minOccurs="0" maxOccurs="1" name="LongCode" type="s:string"/></s:sequence></s:complexType><s:simpleType name="MSGType"><s:restriction base="s:string"><s:enumeration value="NoSMS"/><s:enumeration value="ShortSMS"/><s:enumeration value="LongSMSNoPageNum"/><s:enumeration value="LongSMSWithPageNum"/><s:enumeration value="LongSMS"/><s:enumeration value="WAPPush"/><s:enumeration value="MMS"/><s:enumeration value="NMS"/></s:restriction></s:simpleType><div class="clear"></div>
登录后复制
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板