using System; using System.Web; using System.Collections; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace = "http://www.wrox.com/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class SlowBoy : System.Web.Services.WebService { public SlowBoy () { } [WebMethod] public int TakeLongTime() { int x = 0; for (int y = 1; y <= 1000; y++) { y += 1; x = y; } return x; } }