码迷,mamicode.com
首页 > Web开发 > 详细

WebService接口

时间:2015-04-17 11:10:54      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

1、添加wenservice引用
http://XXXX/Webservice/SMSWebService.asmx

2、添加一个类,实现接口里面的方法(最好写在BLL中方便项目中调用)
public static SMSWebService.SMSWebService SendSMS()
        {
            SMSWebService.SMSWebService sendSMS = new SMSWebService.SMSWebService();
            return sendSMS;
        }

3、动态接口地址的实现
public static BigAntMessage.AntMessage BigAntSendBoard()
        {
            string strUrl = System.Configuration.ConfigurationManager.AppSettings["IBigAnt"];
            strUrl += "/api/message.html?wsdl";
            BigAntMessage.AntMessage sendBoard = new BigAntMessage.AntMessage(strUrl);
            return sendBoard;
        }

WebService接口

标签:

原文地址:http://www.cnblogs.com/zecVip/p/4434136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!