Package examples.bulksms

Source Code of examples.bulksms.SendMessage

// SendMessage.java - Sample application.
//
// This application shows you the basic procedure for sending messages.
// You will find how to send synchronous and asynchronous messages.
//
// For asynchronous dispatch, the example application sets a callback
// notification, to see what's happened with messages.
//
// Bulk Operator used: BULKSMS (http://www.bulksms.com)
// Please look the BulkSmsHTTPGateway documentation for details.

package examples.bulksms;

import org.smslib.Library;
import org.smslib.OutboundMessage;
import org.smslib.Service;
import org.smslib.http.BulkSmsHTTPGateway;

public class SendMessage
{
  public void doIt() throws Exception
  {
    try
    {
      OutboundMessage msg;
      System.out.println("Example: Send message from BulkSMS HTTP Interface.");
      System.out.println(Library.getLibraryDescription());
      System.out.println("Version: " + Library.getLibraryVersion());
      BulkSmsHTTPGateway gateway = new BulkSmsHTTPGateway("bulksms.http.1", "username", "password");
      gateway.setOutbound(true);
      Service.getInstance().addGateway(gateway);
      Service.getInstance().startService();
      // Query the service to find out our credit balance.
      System.out.println("Remaining credit: " + gateway.queryBalance());
      // Send a message synchronously.
      msg = new OutboundMessage("+30...", "Hello from SMSLib (BULKSMS handler)");
      Service.getInstance().sendMessage(msg);
      System.out.println(msg);
      System.out.println("Now Sleeping - Hit <enter> to terminate.");
      System.in.read();
      Service.getInstance().stopService();
    }
    catch (Exception e)
    {
      System.out.print(e);
      e.printStackTrace();
    }
  }

  public static void main(String args[])
  {
    SendMessage app = new SendMessage();
    try
    {
      app.doIt();
    }
    catch (Exception e)
    {
      e.printStackTrace();
    }
  }
}
TOP

Related Classes of examples.bulksms.SendMessage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.