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
9
votes
1 answer

Camel SMPP - Server

I am familiar with Camel-SMPP and also it works great for my consumer and producer routes. I am using Selenium SMPP SIM to test the same. from uri="smpp://smppclient@127.0.0.1:8056?password=password&systemType=consumer"/> to…
Joe2013
  • 947
  • 7
  • 22
4
votes
4 answers

Using SMPP to send sms texts in JAVA

I am trying to send sms using JAVA. After googling, I found out that SMPP protocol is to be used for it and stumbled upon the below source code. public class SendSMS { public static void main(String[] args) throws Exception { SendSMS obj = new…
Aarish Ramesh
  • 5,321
  • 10
  • 49
  • 97
3
votes
2 answers

Send Unicode SMS via SMPP

I want to send sms iwth unicode characters via SMPP (JSMPP library). I know that Data Encoding must be 8 for it & sms length is 70 character. But when I try this, I get sms with Chinese symbols. Here is my code: ESMClass esmClass = new…
totali
  • 260
  • 5
  • 21
3
votes
0 answers

Camel SMPP custom SMS port

I'm currently trying to send a SMS with Camel SMPP but I'm failing on sending it to a specific destination port. Actually nothing port related happens on my SMPP server. Here is my current code in my Processor…
Jonathan Crégut
  • 148
  • 1
  • 1
  • 8
3
votes
1 answer

JSMPP - EnquireLinkTimer, session dies after long time inactivity

What is enquireLinkTimer property in SMPPSession class from JSMPP library? It rebings session every N milliseconds? If not, is there a way to automatically rebing session with some time interval? Or what should I do, if I face the following problem:…
another-programmer
  • 790
  • 10
  • 34
3
votes
0 answers

DeliveryReceipt for message is null

I'm using the JSMPP SMPP library for sending SMS to mobile numbers which is running successfully but deliverSm.getShortMessage() and deliverSm.getShortMessageAsDeliveryReceipt are NULL -- that is, I am not able to receive deliveryReceipt. Connection…
3
votes
2 answers

SMPP Submit Long Message and message split

We are using SMPP cloud-hopper library to SMS long long messages to SMS gateway Innovativetxt.com, but it seems like when we split following the long message TO 140 bytes each part. The number of characters in each message gets to 134…
Mark
  • 342
  • 1
  • 7
  • 20
3
votes
2 answers

SMS Transport sender in wso2 ESB

Recently I read an article about Sending SMS notifications using WSo2 esb. Unfortunately it does not work for me and I am not 100% sure about some of those configurations. Following are the problems that I have. Are there any other library files,…
Dimuthu
  • 130
  • 1
  • 3
  • 10
2
votes
2 answers

GenericNackResponseException

I create SMPP Server Simulatorn with JSMPP. It is OK when accepting the message, but when I want to send delivery report or message I get this exception. InvalidResponseException org.jsmpp.GenericNackResponseException: Receive generic_nack with…
totali
  • 260
  • 5
  • 21
2
votes
0 answers

Camel ActiveMQ and JSMPP Connection Monitoring

We are developing an OSGI (karaf container) based application and it is deployed in fuse ESB. We have some integrations like to ActiveMQ and to SMSC over SMPP etc. We are connecting and interacting with these systems with camel routes. I want to…
st.
  • 130
  • 5
  • 21
2
votes
2 answers

Negative response 00000436 found

I got this error when I'm trying to send sms via SMPP connection. org.jsmpp.extra.NegativeResponseException: Negative response 00000436 found at org.jsmpp.session.AbstractSession.validateResponse(AbstractSession.java:215) at…
jayark
  • 23
  • 5
2
votes
1 answer

Restcomm smsc gateway: How to forward incoming messages

I am using restcomm smsc gateway 7.3.135. I need to achieve the following. SmppClient --> RestcommSMSC ---> ExternalSMPPServer SmppClient --> RestcommSMSC ---> ExternalHTTPServer Can you please help how to achieve this type of routing. Thanks.
Carbonrock
  • 448
  • 2
  • 13
2
votes
2 answers

SSL certificates for connection over TCP/IP

I have a Java application which communicates with a Server and exchanges short messages over SMPP connection over TCP/IP. I want to add SSL security to make the short messages secured. I am using JSMPP (Java implementation of SMPP). I want answers…
laam
  • 801
  • 2
  • 8
  • 32
2
votes
2 answers

jsmpp sms delivery report and receiving

I am using jsmpp library for sending sms with connection to remote sms center. I have 2 problems: 1) At first, when I send sms to any mobile number, even to switched off mobiles I get DELIVERED status, but in real the mobile is turned off. 2) I…
Samir
  • 1,288
  • 2
  • 22
  • 41
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…
Samir
  • 1,288
  • 2
  • 22
  • 41
1
2 3 4 5 6