All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsmpp.examples.receipts.CustomSimpleSubmitSimpleReceiveExample Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); 
 * you may not use this file except in compliance with the License. 
 * You may obtain a copy of the License at
 * 
 *    http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */
package org.jsmpp.examples.receipts;

import java.io.IOException;
import java.util.Date;

import org.jsmpp.InvalidResponseException;
import org.jsmpp.PDUException;
import org.jsmpp.SMPPConstant;
import org.jsmpp.bean.AlertNotification;
import org.jsmpp.bean.Alphabet;
import org.jsmpp.bean.BindType;
import org.jsmpp.bean.DataSm;
import org.jsmpp.bean.DeliverSm;
import org.jsmpp.bean.ESMClass;
import org.jsmpp.bean.GeneralDataCoding;
import org.jsmpp.bean.MessageClass;
import org.jsmpp.bean.MessageType;
import org.jsmpp.bean.NumberingPlanIndicator;
import org.jsmpp.bean.RegisteredDelivery;
import org.jsmpp.bean.SMSCDeliveryReceipt;
import org.jsmpp.bean.TypeOfNumber;
import org.jsmpp.examples.SimpleSubmitExample;
import org.jsmpp.extra.NegativeResponseException;
import org.jsmpp.extra.ProcessRequestException;
import org.jsmpp.extra.ResponseTimeoutException;
import org.jsmpp.session.BindParameter;
import org.jsmpp.session.DataSmResult;
import org.jsmpp.session.MessageReceiverListener;
import org.jsmpp.session.SMPPSession;
import org.jsmpp.session.Session;
import org.jsmpp.util.AbsoluteTimeFormatter;
import org.jsmpp.util.InvalidDeliveryReceiptException;
import org.jsmpp.util.TimeFormatter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * @author terukizm
 */
public class CustomSimpleSubmitSimpleReceiveExample {
  private static final Logger LOGGER = LoggerFactory.getLogger(SimpleSubmitExample.class);
  private static final TimeFormatter TIME_FORMATTER = new AbsoluteTimeFormatter();
  private static final CustomDeliveryReceiptStripper CUSTOM_DELIVERY_RECEIPT_STRIPPER = CustomDeliveryReceiptStripper.getInstance();
  private static final String DATASM_NOT_IMPLEMENTED = "data_sm not implemented";

  public static void main(String[] args) throws InterruptedException {
    String server = "localhost";
    int port = 8056;
    String message = "jSMPP simplify SMPP on Java platform";

    SMPPSession session = new SMPPSession();
    try {
      String systemId = session.connectAndBind(server, port, new BindParameter(BindType.BIND_TRX, "test", "test", "cp",
          TypeOfNumber.UNKNOWN, NumberingPlanIndicator.UNKNOWN, null));
      LOGGER.info("Connected with SMSC with system id {}", systemId);

      // send Message
      try {
        // set RegisteredDelivery
        final RegisteredDelivery registeredDelivery = new RegisteredDelivery();
        registeredDelivery.setSMSCDeliveryReceipt(SMSCDeliveryReceipt.SUCCESS_FAILURE);

        String messageId = session.submitShortMessage("CMT", TypeOfNumber.INTERNATIONAL,
            NumberingPlanIndicator.UNKNOWN, "1616", TypeOfNumber.INTERNATIONAL, NumberingPlanIndicator.UNKNOWN,
            "628176504657", new ESMClass(), (byte) 0, (byte) 1, TIME_FORMATTER.format(new Date()), null,
            registeredDelivery, (byte) 0, new GeneralDataCoding(Alphabet.ALPHA_DEFAULT, MessageClass.CLASS1,
                false), (byte) 0, message.getBytes());

        LOGGER.info("Message submitted, message_id is {}", messageId);

      } catch (PDUException e) {
        // Invalid PDU parameter
        LOGGER.error("Invalid PDU parameter", e);
      } catch (ResponseTimeoutException e) {
        // Response timeout
        LOGGER.error("Response timeout", e);
      } catch (InvalidResponseException e) {
        // Invalid response
        LOGGER.error("Receive invalid response", e);
      } catch (NegativeResponseException e) {
        // Receiving negative response (non-zero command_status)
        LOGGER.error("Receive negative response", e);
      } catch (IOException e) {
        LOGGER.error("I/O error occured", e);
      }

      // Set listener to receive deliver_sm
      session.setMessageReceiverListener(new MessageReceiverListener() {

        public void onAcceptDeliverSm(DeliverSm deliverSm) throws ProcessRequestException {
          if (MessageType.SMSC_DEL_RECEIPT.containedIn(deliverSm.getEsmClass())) {
            // delivery receipt
            try {
              CustomDeliveryReceipt delReceipt = deliverSm.getDeliveryReceipt(CUSTOM_DELIVERY_RECEIPT_STRIPPER);
              long id = Long.parseLong(delReceipt.getId()) & 0xffffffff;
              String messageId = Long.toString(id, 16).toUpperCase();
              LOGGER.info("received '{}' : {}", messageId, delReceipt);
            } catch (InvalidDeliveryReceiptException e) {
              LOGGER.error("receive failed, e");
            }
          } else {
            // regular short message
            LOGGER.info("Receiving message : {}", new String(deliverSm.getShortMessage()));
          }
        }

        public void onAcceptAlertNotification(AlertNotification alertNotification) {
          LOGGER.info("onAcceptAlertNotification");
        }

        public DataSmResult onAcceptDataSm(DataSm dataSm, Session source) throws ProcessRequestException {
          LOGGER.info("onAcceptDataSm");
          throw new ProcessRequestException(DATASM_NOT_IMPLEMENTED, SMPPConstant.STAT_ESME_RQUERYFAIL);
        }
      });

      // wait 5 second
      Thread.sleep(5000);

      // unbind(disconnect)
      session.unbindAndClose();

    } catch (IOException e) {
      LOGGER.error("Failed connect and bind to host", e);
    }

    LOGGER.info("Finish!");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy