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.

76 questions
2
votes
1 answer

Free online SMPP server

I want to send and receive sms using jsmpp (or maybe smslib). I can send sms and get delivery report for my sms. But I cannot receive sms from SMSC. I downloaded Java SMPP Client application for receiving sms, but it didn't help. I want to test this…
0bj3ct
  • 1,400
  • 4
  • 22
  • 51
2
votes
0 answers

SMPP Recived PDU

I am trying to implement PHP SMPP http://www.phpclasses.org/package/1373-PHP-Sends-SMS-messages-via-an-SMPP-server.html and trying to get the delivery receipts, but i am unable to read. Below is the PDU response that i am getting. Highly…
Mark
  • 362
  • 2
  • 7
  • 21
2
votes
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
  • 63
  • 8
2
votes
1 answer

Let a connection to server be open all the time

I am working on SMS application for a company, that sends SMS messages (SUBMIT_SM command) and receives the response from the SMSC (SUBMIT_SM_RESP command) to indicates if it is delivered to the customer. I am using JSMPP API. What is the best…
Eng.Fouad
  • 115,165
  • 71
  • 313
  • 417
2
votes
1 answer

Camel smpp consumer inflight exchanges keep growing

I configured a route that listens to incoming SMS. The route receives a lot of sms and everything seems to go fine except for 2 things: The number of inflight exchange grow slowly but constantly (after an uptime of 55 hours I have 250 inflight…
Frederic Close
  • 9,389
  • 6
  • 56
  • 67
1
vote
1 answer

SMPP: Negative response 00000008

I want send USSD messages via jsmpp. When I send message I get this error org.jsmpp.extra.NegativeResponseException: Negative response 00000008 found at org.jsmpp.session.AbstractSession.validateResponse(AbstractSession.java:215) at…
totali
  • 260
  • 6
  • 22
1
vote
0 answers

How to send SMS message to Multiple recipients using Apache Camel SMPP

I am using following route to send SMS to multiple recipients. @Component public class SMSRoute extends RouteBuilder{ List recipientList = Arrays.asList("0512345678","0512345679"); @Override public void configure() throws…
dilip
  • 19
  • 1
  • 3
1
vote
0 answers

SMPP java server connect to SMSC or SMPP Client can receive SMS via SMPP?

i have 3rd party smpp connection. so i created java smpp client and its working fine. how i can create smpp server connect to 3rd party smpp connection and need to send sms via that created smpp server. my problem is i doesn't know how to connect…
prasadisuru
  • 11
  • 1
  • 1
1
vote
1 answer

SMPP: how to create a simple listener in Java?

I have a client which can generate and send SMS message by using SMPP protocol. I can setup on the client side destination address and user, password. I would like to create a very simple server (listener) which will receive message (without SSL)…
bpm2021
  • 49
  • 5
1
vote
2 answers

How to send WAP SI Messages with JSMPP

I want to send wap-push message over smpp, using jsmpp library. I found some material, but it is not working. Can someone explain me, what is the technology for sending wap-push message?
totali
  • 260
  • 6
  • 22
1
vote
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
  • 688
  • 7
  • 24
1
vote
4 answers

US-ASCII string (de-)compression into/from a byte array (7 bits/character)

As we all know, ASCII uses 7-bit to encode chars, so number of bytes used to represent the text is always less than the length of text letters For example: StringBuilder text = new StringBuilder(); IntStream.range(0, 160).forEach(x ->…
Anas
  • 688
  • 7
  • 24
1
vote
1 answer

SMPP SMS Send Long SMS

I have a java code to submit long SMS to SMPP but while excecution I'm getting "length must be less than or equal to 254. Actual length is 270" error. When using a lengthy string or any arabic characters. Can anyone help me to identify the cause and…
1
vote
0 answers

Getting SMPP error codes from server simulator

I'm using Server simulator from official jsmpp examples and I want to get smpp error codes(like ESME_ROK) from the server sim. I use simpleSubmitExample and SimpleSubmitSimpleReceive (from official exmples) for sending messge and it works fine, but…
zelenov aleksey
  • 398
  • 4
  • 13
1
vote
0 answers

How to get the SMS delivery notification in axis2 sms transport ?

I'm writing sms api based on axis2 sms transport. I want to know how can i get the sms delivery notification using asix2 sms transport. current axis2 sendsms method has no return value. Is JSMPP support sms delivery notification? Thanks
stacktome
  • 790
  • 2
  • 9
  • 32