An XML Web service that exposes the Default table from Northwind (C#) : WebService « Development « ASP.NET Tutorial






File: App_Code\Default.cs


using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Data;
using System.Data.SqlClient;

[WebService(Namespace = "http://www.tempuri.com/customers")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class Default : System.Web.Services.WebService
{

    [WebMethod]
    public DataSet GetDefault() {
       SqlConnection conn;
       SqlDataAdapter myDataAdapter;
       DataSet myDataSet;
       string cmdString = "Select * From Default";

       conn = new SqlConnection("Server=localhost;uid=sa;pwd=;database=Northwind");
       myDataAdapter = new SqlDataAdapter(cmdString, conn);

       myDataSet = new DataSet();
       myDataAdapter.Fill(myDataSet, "Default");

       return myDataSet;
    }
    
}
 
Changes to the web.config file after making a reference to the Web service 

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
   <appSettings>
      <add key="MyNamespace.Default" 
       value="http://www.tempuri.com/MyWebService/Default.asmx"/>
   </appSettings>
</configuration>








9.47.WebService
9.47.1.Contents of the Service.asmx file
9.47.2.An XML Web service that exposes the Default table from Northwind (C#)
9.47.3.An XML Web service that exposes the Default table from Northwind (VB)
9.47.4.WebMethod overloading in .NET
9.47.5.Turning off conformance using the web.config file
9.47.6.Utilizing the CacheDuration property
9.47.7.A Web service class that utilizes a SOAP header (C#)
9.47.8.A Web service class that utilizes a SOAP header (VB)
9.47.9.WebServiceBinding
9.47.10.WebMethod