实名认证用户熊川湘 身份证号码430811198506290914

04 2012 档案

摘要:生成dll的方法:讲下通过dll来引用webservice的方法,我只把流程介绍下.首先,在ie输入服务的地址,如:http://www.xxx.com/service.asmx然后写输入http://www.xxx.com/service.asmx?wsdl打开后,另存为xxx.wsdl然后用vs的命令提示符来编译:wsdl /namespace:SiteA ServiceA.wsdl生成名字空间为sitea的代理类最后csc /out:ServiceA.dll /t:library Service1.cs ,其中service1.cs为代理类文件最后引用dll就可以了.里我介绍vs调用we 阅读全文
posted @ 2012-04-09 10:59 浪达短信群发 阅读(3635) 评论(0) 推荐(0)
摘要:using System;using System.Web;using System.Collections;using System.Web.Services;using System.Web.Services.Protocols;using System.IO;using System.Xml.Serialization;using System.Text;using System.Collections.Generic;/// <summary>/// WebService 的摘要说明/// </summary>[WebService(Namespace = &q 阅读全文
posted @ 2012-04-06 23:08 浪达短信群发 阅读(6036) 评论(0) 推荐(0)