Questions tagged [jsmpp]

JSMPP is a java implementation (SMPP API) of the SMPP protocol (currently supports SMPP v3.4).

SMPP stands for Short Message Peer to Peer. It is a standard protocol for exchanging SMS messages between SMS entities over TCP/IP or X.25 connections.

This API was created to reduce the verbosity of the existing SMPP API. It's very simple to use because it hides the complexity of the low-level protocol communication such as automatically enquire link request-response.

You can read more here.

77 questions
1
vote
1 answer

How to use User Data in smpp?

How to use User Data(UDH) in smpp? Now I want to send sms specified port. I use OpenSMPP as my project lib..
Walter Lee
  • 53
  • 8
1
vote
0 answers

JSMPP Submitsm , unable to submit short message | USSD

Whenever I try to submit a short message outside method onAcceptDeliverSm(DeliverSm deliverSm), I'm getting an exception. here is my code which is working: public void onAcceptDeliverSm(DeliverSm deliverSm) throws ProcessRequestException…
sree127
  • 401
  • 3
  • 8
  • 25
1
vote
1 answer

SMS Receiving using JSMPP sometimes stop

I am using JSMPP from Google to receive SMS messages from SMS Service Centre. Sometimes, my program stops receiving SMS from SMSC, I have to close the program and Re-Open the program. Then Queued SMSes from SMSC starts receive. This happens after…
user1479203
  • 417
  • 1
  • 7
  • 16
1
vote
1 answer

Want a USSD Server Simulator

I need to simulate SMPP messages from USSD Gateway and USSD Application Server I have a USSD Gateway application using the JSMPP Library and need a gateway to receive the USSDs sent from this library Is there any open source USSD Server or even an…
0
votes
0 answers

JSMPP, Getting Delivery Recipient Report

I am using JSMPP for sending and receiving SMS and I want to create a part which will be capable of creating reports for the campaigns. I could not find any PDU to report current status of the SMS if it delivered to the subscribers or it is queued…
0
votes
0 answers

How to disconnect jsmpp connection while using auto reconnect

I have developed an application using jsmpp library. I used the auto-reconnect class to make the application auto-connect but when I try to use unbindAndClose() it sends null to #private SMPPSession session = null; ......so the system still do…
kaleb
  • 1
  • 1
0
votes
0 answers

jSMPP client bound to specific network interface

I have created a jsmpp client which is working. However I am running this on a computer with many network interfaces. Of these network interface only one has the ip address allowed by the Short Message Center. How do I make sure that the jsmpp…
kocol
  • 1
  • 1
0
votes
3 answers

Give SMPP connection via JSMPP

I have SMPP connection with mobile provider (JSMPP). Now I want give SMPP connection to another person over SMPP. (Mobile provider doesn't allow give direct SMPP connection to another person) How can I do it?
totali
  • 260
  • 5
  • 21
0
votes
0 answers

Retrieve all session ids in jsmpp

i want to know check how many sessions are active and created for sms server. Is there any method available in jsmpp-2.0.1.jar file to check above requirement.
Naresh V
  • 39
  • 5
0
votes
0 answers

How to stop SMPPServerSession when there are no message in X second

I'm using SMPP Message receiver listener, how can i stop my current SMPPServerSession when there are no message receive in X second?
alse lies
  • 31
  • 3
0
votes
0 answers

Kannel as SMPP Client Server

How can I setup Kannel as SMPP server to receive the message from the esme client and these messages will pass through the smpp client to MNO? -All requests should store in DB. -Message-ID mapping with ESME client. I am able to connect with MNO also…
Altmish-E-Azam
  • 1,480
  • 1
  • 13
  • 22
0
votes
1 answer

Delivery report for Sumit-Multi

We are using jsmpp library with SmppSm, here's the scenario create session and bind as transmitter register MessageRecieverListener send SubmitMulti command we were expecting to receive delivery report, but We didn't, we also search if SMPP…
Anas
  • 540
  • 5
  • 19
0
votes
0 answers

Sending SMS using SMPP

I am configuring SMPP for My project Below is my program System.out.println("Example: Send/Receive message through SMPP using JSMPP."); System.out.println(Library.getLibraryDescription()); System.out.println("Version: " +…
Utkarsh
  • 1
  • 1
0
votes
0 answers

How can i send message using my sim wirelessly through java code?

Can anybody tell me how can i use my sim card wirelessly to send SMS to someone using java so that the billing procedure will be done through my sim card.
0
votes
2 answers

SMPP: Setting message_id for submit_sm

Please is it possible to set The unique message identifier, that will later be returned in the DLR for reference purpose. Let me explain my current process below: My approach is we send a message to the smsc gateway we get an id from smsc, we save…