using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; using System.IO; namespace SalvestavSilverlight.Web { /// /// Summary description for Salvestusteenus /// [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. // [System.Web.Script.Services.ScriptService] public class Salvestusteenus : System.Web.Services.WebService { [WebMethod] public string HelloWorld() { return "Hello World"; } [WebMethod] public void LisaTekst(string tekst) { File.AppendAllText(Server.MapPath("andmed.txt"), tekst+"\n"); } [WebMethod] public string KysiTekst() { return File.ReadAllText(Server.MapPath("andmed.txt")); } } }