|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
语言是不是不是最重要的?<p>创建ASP.NETWeb服务步骤(1):创立Web服务
新建-项目-Web-Asp.net服务使用程序,把HelloWorld给删除,ReverseString办法,以下:
代码:
<OLclass=dp-c>usingSystem;usingSystem.Collections;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Services;usingSystem.Web.Services.Protocols;usingSystem.Xml.Linq;namespaceWebService2{///<summary>///Service1的择要申明///</summary>[WebService(Namespace="http://tempuri.org/")][WebServiceBinding(ConformsTo=WsiProfiles.BasicProfile1_1)][ToolboxItem(false)]//若要同意利用ASP.NETAJAX从剧本中挪用此Web服务,请作废对下行的正文。//[System.Web.Script.Services.ScriptService]publicclassService1:System.Web.Services.WebService{[WebMethod]publicstringReverseString(stringmessage)//新建这个办法{char[]arr=message.ToCharArray();Array.Reverse(arr);message=newstring(arr);returnmessage;}}}
测试服务:
点击办法,输出abcde,点挪用
测试了局:
前往xml,edcba测试准确。
创建ASP.NETWeb服务步骤(2):在WindowsForms中挪用Web服务
新建WindowsForms工程,注重下面服务不要关,爽性双开VS吧,以免出成绩。项目-增加服务援用,地点中输出Web服务的地点,上例:http://localhost:1241/Service1.asmx,假如Web服务已公布,请填写公布的地点。
找到服务后断定:
在Form上到场两个TextBox,一个Button,双击Button,编写事务。
代码:
<divclass="code"><OLclass=dp-c>usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceWindowsFormsApplication9{publicpartialclassForm1:Form{publicForm1(){InitializeComponent();} |
|