html5-img
1 / 6

How to Integrate Bulk SMS API in ASP.NET Application

Bulk SMS API allows application developer to integrate on their application and send the sms to all the numbers at one shot without login to their sms panel. Anyone can integrate the Bulk SMS API into their applications, software, website, etc.,<br><br>Through API we can able to check the Status of the sent messages, Delivery report, and group delivery report. We can able to send the Unicode messaging also.<br><br>Once we integrate the Bulk SMS API in any of the application, the application trigger the HTTP API call with all the parameters when on required. The required parameters like SMS Service URL, User Name, Password, Mobile Number, Message, etc.. As soon as call the HTTP API, the api along with all the parameters will be send to SMS Gateway Server and the Bulk SMS Gateway evaluate all the parameters and automatically the message will deliver to the given number without login to the SMS panel itself.<br>Sample Code for ASP.NET:<br>using System;<br>usingSystem.Collections;<br>usingSystem.Configuration;<br>usingSystem.Data;<br>usingSystem.Linq;<br>usingSystem.Web;<br>usingSystem.Web.Security;<br>usingSystem.Web.UI;<br>usingSystem.Web.UI.HtmlControls;<br>usingSystem.Web.UI.WebControls;<br>usingSystem.Web.UI.WebControls.WebParts;<br>usingSystem.Xml.Linq;<br>using System.Net;<br>using System.IO;<br><br>public partial class _Default : System.Web.UI.Page<br>{<br>protected void Page_Load(object sender, EventArgs e)<br> {<br> ///Enter your details<br>string Username = "xxxxxxxxx";<br>string Password = "xxxxxxxxx";<br>string Message = "Test message from HTTP API";<br>stringMobileNo = "9xxxxxxxxx";<br> stringsenderid="XXXXX";<br><br>WebClient client = new WebClient();<br>stringbaseurl = "http://203.129.203.254/sms/user/urlsms.php?username=" Username "&pass=" Password "&senderid=060000&message=" Message "&dest_mobileno=" MobileNo "&response=Y";<br> Stream data = client.OpenRead(baseurl);<br>StreamReader reader = new StreamReader(data);<br>stringResponseID = reader.ReadToEnd();<br>data.Close();<br>reader.Close();<br> }<br>}<br><br>For About Bulk SMS http://www.kapsystem.com<br>For Bulk SMS Demo http://www.kapsystem.com/new/freedemo1.php

kapsystem
Télécharger la présentation

How to Integrate Bulk SMS API in ASP.NET Application

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. How do I integrate bulk SMS gateway API in asp dot net application? Bulk SMS APIallows application developer to integrate on their application and send the sms to all the numbers at one shot without login to their sms panel. Anyone can integrate the Bulk SMS API into their applications, software, website, etc., Through API we can able to check the Status of the sent messages, Delivery report, and group delivery report. We can able to send the Unicode messaging also. Email: info@kapsystem.com| Mobile: +91-97380 10000 | Web: www.kapsystem.com

  2. How do I integrate bulk SMS gateway API in asp dot net application? Email: info@kapsystem.com| Mobile: +91-97380 10000 | Web: www.kapsystem.com

  3. How do I integrate bulk SMS gateway API in asp dot net application? Once we integrate the Bulk SMS APIin any of the application, the application trigger the HTTP API call with all the parameters when on required. The required parameters like SMS Service URL, User Name, Password, Mobile Number, Message, etc.. As soon as call the HTTP API, the api along with all the parameters will be send to SMS Gateway Server and the Bulk SMS Gateway evaluate all the parameters and automatically the message will deliver to the given number without login to the SMS panel itself. Email: info@kapsystem.com| Mobile: +91-97380 10000 | Web: www.kapsystem.com

  4. Sample Code For ASP .Net ///Enter your details string Username = "xxxxxxxxx"; string Password = "xxxxxxxxx"; string Message = "Test message from HTTP API"; stringMobileNo = "9xxxxxxxxx"; stringsenderid="XXXXX"; WebClient client = new WebClient(); stringbaseurl = "http://203.129.203.254/sms/user/urlsms.php?username=" + Username + "&pass=" + Password + "&senderid=060000&message=" + Message + "&dest_mobileno=" + MobileNo + "&response=Y"; Stream data = client.OpenRead(baseurl); StreamReader reader = new StreamReader(data); stringResponseID = reader.ReadToEnd(); data.Close(); reader.Close(); } } using System; usingSystem.Collections; usingSystem.Configuration; usingSystem.Data; usingSystem.Linq; usingSystem.Web; usingSystem.Web.Security; usingSystem.Web.UI; usingSystem.Web.UI.HtmlControls; usingSystem.Web.UI.WebControls; usingSystem.Web.UI.WebControls.WebParts; usingSystem.Xml.Linq; using System.Net; using System.IO; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Email: info@kapsystem.com| Mobile: +91-97380 10000 | Web: www.kapsystem.com

  5. ADVANTAGE OF KAPSYSTEM SERVICE MESSAGING FEATURES www.kapsystem.com ©2015, KAPSYSTEM ( Bulk SMS Service Provider Company) , Email info@kapsystem.com

  6. TRUSTED CLIENTS CONTACT US KAP Computer Solution Pvt. Ltd Our Presence: Bangalore | Delhi | Mumbai | Hyderabad | Chennai | Coimbatore | Pune | Kolkata | Ahmedabad | Noida Mobile : +91 97380 10000 | 1 [Sales] | Email : info@kapsystem.com www.kapsystem.com ©2015, KAPSYSTEM ( Bulk SMS Service Provider Company) , Email info@kapsystem.com

More Related