using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CLIP.eForm.Consent.WebService; namespace CLIP.eForm.Consent.Web { public partial class SessionManager : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } [System.Web.Services.WebMethod] public static Boolean removeSession(string userId) { Boolean retValue = false; using(HospitalSvc svc = new HospitalSvc()) { retValue = svc.removeSession(userId, "true"); } return retValue; } } }