RSms/Ucp 1.0 - Java [TM] Sms component

Home
go to main page

Index


This Java[TM] component will allow your Java[TM] applications to send Sms messages using the UCP protocol.

The component can deliver the messages to a SMSC (Short Message Service Centre) using:

  • a dial up connection (requires an analog Modem and a telephone line)
  • or using a tcp/ip connection (an internet connection)

 

How does it work? You must create an adapter (modem or tcp/ip), an instance of SmsSender and then execute the createSMS and SendMessage() method as in the example.

The following is a simple example:

// create adapter object
Modem modem= new Modem();
modem.setPortName("COM3");
modem.dataBits=SerialPort.DATABITS_8; // do not forget to check if the SMSC uses 7 or 8 bits

// open port , initialize and connect
if (modem.openPort()) {
if (modem.initializeModem())

if (modem.dial("900900900")) {

// send the sms now using the Modem adapter
SmsSender sender=new SmsSender(modem);
sender.createSMS51("123","456","Hello");
sender.sendMessage();

// close connection
modem.hangup();

}
modem.closePort();
}

 

Download evaluation version

Registration

   

 

RSms/Ucp single license (binary versión)
23 Euro
   

 

RSms/Ucp single license (including source code)
38 Euro
   

 

RSms/Ucp redistribution license
98 Euro