Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9156699
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:49:55+00:00 2026-06-17T12:49:55+00:00

I need to store SMS (when they arrive to the GSM modem) in MySQL.

  • 0

I need to store SMS (when they arrive to the GSM modem) in MySQL.

I have read the docs, but it says to use the smsserver and the conffile.
Then I read that I should use database.java.

Can someone guide me on this?

I am already using the ReadMessages.java and I have achieved storing in a MySQL database, but I have managed to store only the ones that are in the SIM card memory, not the inbound messages.

The inbound messages are just printed by the console, I read that this can do with threads.

This is my code:

public void doIt() throws Exception
{
    // Define a list which will hold the read messages.
    List<InboundMessage> msgList;
    // Create the notification callback method for inbound & status report
    // messages.
    InboundNotification inboundNotification = new InboundNotification();
    // Create the notification callback method for inbound voice calls.
    CallNotification callNotification = new CallNotification();
    //Create the notification callback method for gateway statuses.
    GatewayStatusNotification statusNotification = new GatewayStatusNotification();
    OrphanedMessageNotification orphanedMessageNotification = new OrphanedMessageNotification();
    try
    {
        //System.out.println("Example: Read messages from a serial gsm modem.");
        //System.out.println(Library.getLibraryDescription());
        //System.out.println("Version: " + Library.getLibraryVersion());
        // Create the Gateway representing the serial GSM modem.
        SerialModemGateway gateway = new SerialModemGateway("modem.com1", "COM4", 115200, "Huawei", "E160");
        // Set the modem protocol to PDU (alternative is TEXT). PDU is the default, anyway...
        gateway.setProtocol(Protocols.PDU);
        // Do we want the Gateway to be used for Inbound messages?
        gateway.setInbound(true);
        // Do we want the Gateway to be used for Outbound messages?
        gateway.setOutbound(true);
        // Let SMSLib know which is the SIM PIN.
        gateway.setSimPin("0000");
        // Set up the notification methods.
        Service.getInstance().setInboundMessageNotification(inboundNotification);
        Service.getInstance().setCallNotification(callNotification);
        Service.getInstance().setGatewayStatusNotification(statusNotification);
        Service.getInstance().setOrphanedMessageNotification(orphanedMessageNotification);
        // Add the Gateway to the Service object.
        Service.getInstance().addGateway(gateway);
        // Similarly, you may define as many Gateway objects, representing
        // various GSM modems, add them in the Service object and control all of them.
        // Start! (i.e. connect to all defined Gateways)
        Service.getInstance().startService();
        // Printout some general information about the modem.
        System.out.println();
        System.out.println("Informacion del modem:");
        System.out.println(" Fabricante: " + gateway.getManufacturer());
        System.out.println("  Modelo: " + gateway.getModel());
        System.out.println("  Serial No: " + gateway.getSerialNo());
        System.out.println("  SIM IMSI: " + gateway.getImsi());
        //System.out.println("  Signal Level: " + gateway.getSignalLevel() + " dBm");
        //System.out.println("  Battery Level: " + gateway.getBatteryLevel() + "%");
        System.out.println();
        // In case you work with encrypted messages, its a good time to declare your keys.
        // Create a new AES Key with a known key value. 
        // Register it in KeyManager in order to keep it active. SMSLib will then automatically
        // encrypt / decrypt all messages send to / received from this number.
        Service.getInstance().getKeyManager().registerKey("+306948494037", new AESKey(new SecretKeySpec("0011223344556677".getBytes(), "AES")));
        // Read Messages. The reading is done via the Service object and
        // affects all Gateway objects defined. This can also be more directed to a specific
        // Gateway - look the JavaDocs for information on the Service method calls.

                ConexionMySQL mysql = new ConexionMySQL();
                Connection cnn =  mysql.Conectar();
                String sms= "";
                String originator="";


                String sql ="";
                int n = 0;
                String success="Mensajee satisfactorio";

                msgList = new ArrayList<InboundMessage>();
        Service.getInstance().readMessages(msgList, MessageClasses.ALL);
        for (InboundMessage msg : msgList){
            //System.out.println(msg);
                     sms = msg.getText().toString();
                     remitente = msg.getOriginator().toString();
                     //fecha = msg.getDate().getTime();




                sql ="INSERT INTO message(message, originator) VALUES (?,?)";

                PreparedStatement post = (PreparedStatement) cnn.prepareStatement(sql);
                post.setString(1, message);
                post.setString(2, originator);
                //post.setDate(3, fecha);   public void doIt() throws Exception
{
    // Define a list which will hold the read messages.
    List<InboundMessage> msgList;
    // Create the notification callback method for inbound & status report
    // messages.
    InboundNotification inboundNotification = new InboundNotification();
    // Create the notification callback method for inbound voice calls.
    CallNotification callNotification = new CallNotification();
    //Create the notification callback method for gateway statuses.
    GatewayStatusNotification statusNotification = new GatewayStatusNotification();
    OrphanedMessageNotification orphanedMessageNotification = new OrphanedMessageNotification();
    try
    {
        //System.out.println("Example: Read messages from a serial gsm modem.");
        //System.out.println(Library.getLibraryDescription());
        //System.out.println("Version: " + Library.getLibraryVersion());
        // Create the Gateway representing the serial GSM modem.
        SerialModemGateway gateway = new SerialModemGateway("modem.com1", "COM4", 115200, "Huawei", "E160");
        // Set the modem protocol to PDU (alternative is TEXT). PDU is the default, anyway...
        gateway.setProtocol(Protocols.PDU);
        // Do we want the Gateway to be used for Inbound messages?
        gateway.setInbound(true);
        // Do we want the Gateway to be used for Outbound messages?
        gateway.setOutbound(true);
        // Let SMSLib know which is the SIM PIN.
        gateway.setSimPin("0000");
        // Set up the notification methods.
        Service.getInstance().setInboundMessageNotification(inboundNotification);
        Service.getInstance().setCallNotification(callNotification);
        Service.getInstance().setGatewayStatusNotification(statusNotification);
        Service.getInstance().setOrphanedMessageNotification(orphanedMessageNotification);
        // Add the Gateway to the Service object.
        Service.getInstance().addGateway(gateway);
        // Similarly, you may define as many Gateway objects, representing
        // various GSM modems, add them in the Service object and control all of them.
        // Start! (i.e. connect to all defined Gateways)
        Service.getInstance().startService();
        // Printout some general information about the modem.
        System.out.println();
        System.out.println("Informacion del modem:");
        System.out.println(" Fabricante: " + gateway.getManufacturer());
        System.out.println("  Modelo: " + gateway.getModel());
        System.out.println("  Serial No: " + gateway.getSerialNo());
        System.out.println("  SIM IMSI: " + gateway.getImsi());
        //System.out.println("  Signal Level: " + gateway.getSignalLevel() + " dBm");
        //System.out.println("  Battery Level: " + gateway.getBatteryLevel() + "%");
        System.out.println();
        // In case you work with encrypted messages, its a good time to declare your keys.
        // Create a new AES Key with a known key value. 
        // Register it in KeyManager in order to keep it active. SMSLib will then automatically
        // encrypt / decrypt all messages send to / received from this number.
        Service.getInstance().getKeyManager().registerKey("+306948494037", new AESKey(new SecretKeySpec("0011223344556677".getBytes(), "AES")));
        // Read Messages. The reading is done via the Service object and
        // affects all Gateway objects defined. This can also be more directed to a specific
        // Gateway - look the JavaDocs for information on the Service method calls.

                    ConexionMySQL mysql = new ConexionMySQL();
                    Connection cnn =  mysql.Conectar();
                    String sms= "";
                    String remitente="";
                    //Date fecha;

                    String sql ="";
                    int n = 0;
                    String mensaje="Mensajee satisfactorio";

                    msgList = new ArrayList<InboundMessage>();
        Service.getInstance().readMessages(msgList, MessageClasses.ALL);
        for (InboundMessage msg : msgList){
            //System.out.println(msg);
                         sms = msg.getText().toString();
                         remitente = msg.getOriginator().toString();
                         //fecha = msg.getDate().getTime();




                    sql ="INSERT INTO mensaje(mensaje, remitente) VALUES (?,?)";

                    PreparedStatement post = (PreparedStatement) cnn.prepareStatement(sql);
                    post.setString(1, sms);
                    post.setString(2, originator);


                    n = post.executeUpdate();

                    if(n >0){
                        JOptionPane.showMessageDialog(null, mensaje);
                        Service.getInstance().deleteMessage(msg);

                    }















        // Sleep now. Emulate real world situation and give a chance to the notifications
        // methods to be called in the event of message or voice call reception.
                    System.out.println("Now Sleeping - Hit <enter> to stop service.");
        System.in.read();



        System.in.read();






                    }
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    finally
    {
        Service.getInstance().stopService();
    }
}

                n = post.executeUpdate();

                if(n >0){
                    JOptionPane.showMessageDialog(null, mensaje);
                    Service.getInstance().deleteMessage(msg);

                }















        // Sleep now. Emulate real world situation and give a chance to the notifications
        // methods to be called in the event of message or voice call reception.
                System.out.println("Now Sleeping - Hit <enter> to stop service.");
        System.in.read();



        System.in.read();






                }
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    finally
    {
        Service.getInstance().stopService();
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T12:49:57+00:00Added an answer on June 17, 2026 at 12:49 pm

    You should check where you’ve put the InboundNotification class.
    The messages you’re seeing from the console with inbound sms comes from there

    public class InboundNotification implements IInboundMessageNotification
    {
        public void process(AGateway gateway, MessageTypes msgType, InboundMessage msg)
        {
            if (msgType == MessageTypes.INBOUND) System.out.println(">>> New Inbound message detected from Gateway: " + gateway.getGatewayId());
            else if (msgType == MessageTypes.STATUSREPORT) System.out.println(">>> New Inbound Status Report message detected from Gateway: " + gateway.getGatewayId());
            System.out.println(msg);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have id values for products that I need store. Right now they are
When creating a magento module i sometimes need store config values for use in
I have issue where I need store info about users in DB and authorize
I've some issue. I need store a functions into the Map but this functions
I have more than 20 checkboxes in my wpf form. I need store IsChecked
I need to store historical data for something in mysql (only last 7 days)
Need to store some data in SQLite. To work with SQLite chose UniDac, but
I need to store a collection of strings in session, and I have a
I need store just 10 arrays in my app, which I can change from
I need to store a very large amount of instances of my class, and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.