8
Bulk SMS Gateway Integration in Java

Bulk sms gateway integration in java

Embed Size (px)

Citation preview

Page 1: Bulk sms gateway integration in java

Bulk SMS Gateway Integration in Java

Page 2: Bulk sms gateway integration in java

1. Wake Up Early

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.,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.

How to Integrate Bulk SMS API in Java Application?

Page 3: Bulk sms gateway integration in java

1. Wake Up Early

How to Integrate Bulk SMS API in Java Application?

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 SMS Gateway evaluate all the parameters and automatically the message will deliver to the given number without login to the SMS panel itself.

Page 4: Bulk sms gateway integration in java

1. Wake Up Early

How to Integrate Bulk SMS API in Java Application?

import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLEncoder; import java.util.Properties;

public class JavaCode{

public JavaCode() {

} public static void main( String[] args) throws Exception{ String postData=""; String retval = "";

Page 5: Bulk sms gateway integration in java

1. Wake Up Early

How to Integrate Bulk SMS API in Java Application?

//give all Parameters In String String Username ="username"; String Password = "Password"; String MobileNo = "9xxxxxxxxx"; String Message = "Test message from java code"; String SenderID = "XXXXXX"; postData += "username=" + Username + "&password=" + Password + "&to=" + MobileNo +"&sender=" + SenderID + "&message=" + Message; URL url = new URL("http://trans.kapsystem.com/web2sms.php?"); HttpURLConnection urlconnection = (HttpURLConnection) url.openConnection(); urlconnection.setRequestMethod("POST");

Page 6: Bulk sms gateway integration in java

1. Wake Up Early

How to Integrate Bulk SMS API in Java Application?

urlconnection.setRequestProperty("Content-Type","application/x-www-form-urlencoded"); urlconnection.setDoOutput(true); OutputStreamWriter out = new OutputStreamWriter(urlconnection.getOutputStream()); out.write(postData); out.close(); BufferedReader in = new BufferedReader( new InputStreamReader(urlconnection.getInputStream())); String decodedString; while ((decodedString = in.readLine()) != null) { retval += decodedString; } in.close();

System.out.println(retval); } }

Page 7: Bulk sms gateway integration in java

MESSAGING FEATURES

www.kapsystem.com

ADVANTAGE OF KAPSYSTEM

SERVICE

©2015, KAPSYSTEM ( Bulk SMS Service Provider Company) , Email [email protected]

Page 8: Bulk sms gateway integration in java

TRUSTED CLIENTS

www.kapsystem.com

KAP Computer Solution Pvt. Ltd (Bulk SMS Service Provider Company) HQ: Bangalore (Corporate Office)

Our Presence: Bangalore | Delhi | Mumbai | Hyderabad | Chennai | Coimbatore | Pune | Kolkata | Ahmedabad | Noida

Mobile : +91 97380 10000 | 1 [Sales] | Email : [email protected]: www.kapsystem.com

CONTACT US

©2015, KAPSYSTEM ( Bulk SMS Service Provider Company) , Email [email protected]