How to Integrate Bulk SMS API in Java Application

Page 1

Bulk SMS

Application

Php

How to Integrate Bulk SMS API in Java Application?


How to Integrate Bulk SMS API in Java 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., 1. Wake Up Early 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?

1. Wake Up Early

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.


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 = "";

1. Wake Up Early


How to Integrate Bulk SMS API in Java Application?

//give all Parameters In String String Username ="username"; String Password = "Password"; 1. Wake Up Early 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");


How to Integrate Bulk SMS API in Java Application? urlconnection.setRequestProperty("Content-Type","application/x-wwwform-urlencoded"); urlconnection.setDoOutput(true); 1. Wake Up Early 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);


MESSAGING FEATURES

www.kapsystem.com

ADVANTAGE OF KAPSYSTEM SERVICE

©2015, KAPSYSTEM ( Bulk SMS Service Provider Company) , Email info@kapsystem.com


TRUSTED CLIENTS

CONTACT US

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 : info@kapsystem.com

Web: www.kapsystem.com

www.kapsystem.com

Š2015, KAPSYSTEM ( Bulk SMS Service Provider Company) , Email info@kapsystem.com


Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.