Girish Dubey 1 Posted September 19, 2016 Report Share Posted September 19, 2016 I am trying to call a web service asynchronous in .net 4.0. I mean i don't want any kind of response from service side. I just want to execute a web method. can you suggest me how i can call? Service Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace UILAYER.Service { /// <summary> /// Summary description for TestService /// </summary> [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 TestService : System.Web.Services.WebService { int Message = "success||Record has been updated."; [WebMethod] public object ExecuteProcessRawRunches() { try { if (Message.ToLower().StartsWith("success||")) { return new { Result = "OK", Records = Message }; } else { return new { Result = "ERROR", Records = Message }; } } catch (Exception ex) { return new { Result = "ERROR", Message = ex.Message }; } } } } Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.