Step by step Create a Web Service

Source: Internet
Author: User
Tags getmessage

(i) Creating a Web Service

Create the first project, type Select ASP. NET Empty Web application

Add a new project Web Service

And then create a class contact

The code is as follows.

Contact.cs:

[Serializable] Public classContact {Private stringname;  Public stringName {Get{returnname;} Set{name =value;} }        Private intAge ;  Public intAge {Get{returnAge ;} Set{age =value;} }    }

HelloWebService.asmx.cs:

    /// <summary>    ///Summary description for Hellowebservice/// </summary>[WebService (Namespace ="http://tempuri.org/")] [WebServiceBinding (ConformsTo=Wsiprofiles.basicprofile1_1)] [System.ComponentModel.ToolboxItem (false)]    //to allow this Web Service to being called from script, using ASP. Uncomment the following line. //[System.Web.Script.Services.ScriptService]     Public classHelloWebService:System.Web.Services.WebService {[WebMethod] Public stringGetMessage (stringname) {            return "Hello"+name; } [WebMethod] PublicGuid createcontact (Contact c) {returnGuid.NewGuid (); }    }

(ii) Create a client

Create a client call Web Service below to verify that it is correct. Create an ASP. NET. Web Application

Add a service Reference

The WebForm1.cs code is

        protected voidButton1_Click (Objectsender, EventArgs e) {hellowebservice.hellowebservicesoapclient Client=Newhellowebservice.hellowebservicesoapclient (); Label1.Text=client.        GetMessage (TextBox1.Text); }        protected voidButton2_Click (Objectsender, EventArgs e) {hellowebservice.hellowebservicesoapclient Client=Newhellowebservice.hellowebservicesoapclient (); Label2.Text= client. CreateContact (Newhellowebservice.contact ()).        ToString (); }

Finally run the client, click the button to get the demo effect

Step by step Create a Web Service

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.