Questions tagged [opensmpp]

OpenSmpp is a mature Java library implementing the SMPP protocol, and allowing development of External Short Message Entities (ESMEs) and more.

OpenSmpp is a mature Java library implementing the SMPP protocol, and allowing development of External Short Message Entities (ESMEs) and more.

http://opensmpp.org/

21 questions
3
votes
1 answer

sending short messages using open smpp 3.4

I have build an application to sending short messages using smpp 3.4 and that work well, but in some phones i got this message: Can not display this message this is my function source code : public String sendMsg(JsonObject paramsIN) { String…
Mhammad Sellam
  • 160
  • 1
  • 15
2
votes
1 answer

Receive message from SMSC using OpenSmpp

i'm trying to receive messages from SMSC using the OPENSMPP. this is my code: try{ PDU pdu = session.receive(30000); if(pdu instanceof DeliverSM){ DeliverSM received = (DeliverSM) pdu; if (received.getEsmClass() == 0) { …
Mhammad Sellam
  • 160
  • 1
  • 15
2
votes
2 answers

How to connect multiple bearerbox in Vsmppbox?

How to connect multiple bearerbox for load balancing in Vsmppbox , my configuration file…
Vinayak
  • 305
  • 2
  • 11
2
votes
0 answers

auto-test and mock opensmpp message exchange

I wrote a code that communicates with provider by SMPP protocol, using OpenSMPP. Now I want to add some autotests for that: start my own smpp server running on localhost:port, send message there from my code, mock response, check that sent…
glebsts
  • 337
  • 4
  • 11
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
0 answers

Java OpenSMPP - TCP ZeroWindow

We are sending high throughput SUBMIT_SM using OpenSMPP. But TCP ZeroWindow is received most of the times. Deliver_SM and SUBMIT_SM_RESP is getting missed. Please suggest how to resolve this. Kindly add your suggestions specific to Java OpenSMPP…
Talal
  • 131
  • 1
  • 1
  • 13
1
vote
2 answers

SMPP ERROR 13 - ESME_RBINDFAIL

i'm using smpp 3.4 to sending short message, when i sent connecting request to SMSC i got the code stats (0x0d - 13 - ESME_RBINDFAIL). but it's work with an other SMSC. can some one help me please?
Mhammad Sellam
  • 160
  • 1
  • 15
1
vote
1 answer

How to use the deliver method to send a short message using opensmpp?

I use opensmpp and try the submit method (Submit_SM) and it work fine. But later i discover that i must use the deliver method (Deliver_SM) in order to use the listener side of the ESME and receive the message from the SMSC. Here is my code the bind…
1
vote
1 answer

Sms not receiving from java web application

I have written java code which is used to send sms using sms gateway. JAVA OpenSMPP API is used to implement the logic for sending SMPP request. I have needed below information which is used to connect to the sms gateway and which is used to send…
Andrew
  • 3,632
  • 24
  • 64
  • 113
1
vote
1 answer

Should ESME send a delivery report?

I have an existential doubt, I know how is the flow to request and get a delivery report from SMSC when the ESME send a submit. But, how should be the behavior when the registered_delivery is requested by the SMSC (to an ESME)? Should ESME send…
Ariel
  • 121
  • 6
1
vote
1 answer

Send long sms via Opensmpp

I use opensmpp library for sending sms, but I cannot find documentation or example of sending long messages. I want to send long messages by splitting and using UDH (because it's sms gate requirement). Where can I find documentation or example for…
1
vote
1 answer

What is OpenSmpp address-range used for?

I am building a small client using OpenSmpp and while reading their code in GitHub, I stumble upon a strange concept of address-range. It's used in the bind process on line 235. It's apparently different from smpp server address, it's value example…
black sensei
  • 6,528
  • 22
  • 109
  • 188
0
votes
1 answer

having same delivery_sm with same MessageId every time

I'm trying to implement smpp solution using opensmpp. Messages are sent succefully but for delivery receipts, I get only for some submited message and the same delivery receipts came several times. Can someone help me please. private void…
0
votes
1 answer

How to set timeout in SMPP

Anyone knows how to set timeout when submit message (submit_sm) to SMSC? I have tried to set the receivetimeout (session.getReceiver().setReceiveTimeout) to 6 seconds but I still got the null response after around 30 seconds. Below are the timeouts…
P.CH
  • 1
  • 2
0
votes
1 answer

How Delivery Receipt is posted while sending messages from SMSC to ESME

I'm having a confusion on how to receive delivery receipt from ESME to SMSC? For Example : If i terminate an Message from SMSC to ESME,then how can ESME sends delivery receipt for the corresponding Message received from SMSC. If SUBMIT_SM is used…
karthi keyan
  • 213
  • 2
  • 19
1
2