Meta
Categories
Category Archives: c#
Easy .Net Web Service
Create a hello world web service Create a directory: c:\HelloServices Create an asmx file: HelloService.asmx <%@ WebService Language="C#" Class="HelloService"%> using System; using System.Web.Services; using System.Xml.Serialization; [WebService( Namespace="http://localhost/HelloServices/")] public class HelloService : WebService { [WebMethod] public string SayHello() { … Continue reading
Posted in c#
Leave a comment