SMSGlobal Soap示例

时间:2017-11-20 14:17:01

标签: c# soap

我试图在我的代码中使用SMSGlobal服务,他们网站上的API不是那么清楚,我找不到任何例子。

我试图发送短信,这是我的代码:

SMSGlobal.MobileWorks mobileWorks = new SMSGlobal.MobileWorks();
string ticket = mobileWorks.apiValidateLogin(<username>, <password>);

string res = mobileWorks.apiSendSms(ticket ....);// couldn't know the parameters values

修改 这里应该传递参数(取自SMSGloabal网站上的API)

<part name="ticket" type="xsd:string"/>
<part name="sms_from" type="xsd:string"/>
<part name="sms_to" type="xsd:string"/>
<part name="msg_content" type="xsd:string"/>
<part name="msg_type" type="xsd:string"/>
<part name="unicode" type="xsd:string"/>
<part name="schedule" type="xsd:string"/>

&#34; tikcet&#34;将从第一行代码中获取,但我不知道要为休息参数传递什么

0 个答案:

没有答案