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
1
vote
1 answer

How to separate messages to third party binders in jsmpp

I am developing an sms gateway using jsmpp library. This is my scenario. I bind to the SMSC(telecoms company) on 2 connections and receive messages on 2 shortcodes, say 30002 and 30003 , assigned to me by the SMSC. Then, third party…
gbenroscience
  • 994
  • 2
  • 10
  • 33
1
vote
1 answer

How to send sms to mobile using spring integration smpp library in java?

I am trying to send sms to mobile with smppsessionfactorybean. I configured host, port,systemid,password,bindtype,autostartup.(with nexmo sms server configuration). But at the time of send() method call it is throwing "java.io.IOException: Cannot…
123r789
  • 1,600
  • 3
  • 22
  • 33
1
vote
1 answer

Specify "numbering plan indicator" in SMSLib JSMPPGateway

How can I specify the "Numbering Plan Indicator" when connecting to a SMPP Server with SMSLib (JSMPPGateway). This is my current JSMPPGateway initialization: gateway = new JSMPPGateway(systemId, ip, port, new BindAttributes(username, password,…
sports
  • 7,851
  • 14
  • 72
  • 129
1
vote
2 answers

JSMPP ResponseTimeoutException: No response after waiting for 2000 millis when executing submit_sm

I am using JSMPP http://code.google.com/p/jsmpp/ for sending and receiving messages .It works fine when i send the short message with less than 140 characters but When i try to send the long sms, It throws the following exception: I tried setting…
srp
  • 521
  • 11
  • 22
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
  • 421
  • 3
  • 9
  • 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
  • 437
  • 1
  • 8
  • 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…
1
vote
1 answer

The "deliver_sm_resp" command in jSMPP

I want to use jSMPP for implementing a Receiver Listener for SMSC. So I want to implement the MessageRecieverListener and the method onAcceptDeliverSm, but according to the SMPP specs the application should send deliver_sm_resp as a response to…
Mira
  • 291
  • 1
  • 6
  • 16
0
votes
0 answers

Receive negative bind response: Negative response 00000005 found

Sometimes we retrieve the below exception during reconnection and only works after restarting the application: Session state is CLOSED. Trying reconnect... Trying disconnect ... Disconnected... Waiting 1 seconds to retry java.io.IOException:…
nikli
  • 2,281
  • 2
  • 24
  • 38
0
votes
0 answers

Using jsmpp for sending asynchronous messages to SMSC server

we have a message campaign where we send over 100k messages (SMS) a day. So we are a client of SMSC server. We have no influence on SMSC server code. Before some time, we had around 80-90 message per second, now frequency dropped to 15 messages per…
Wrapper
  • 794
  • 10
  • 25
0
votes
1 answer

SMS is not received to mobile in SMPP Connector - WSO2 EI 6.5.0

I am using WSO2 SMPP Connector to send SMS to mobile number in WSO2 EI 6.5.0 Pre-requisites: Setup done by using the same steps mentioned here I just placed jsmpp-2.1.0-RELEASE.jar into /lib logica-smpp-sim simulator set up done and…
Justin
  • 855
  • 2
  • 11
  • 30
0
votes
2 answers

Problem with concatenated messages in JSMPP

I have a problem sending concatenated messages to my SMSC, here, I will do my best to describe the problem. When sending concatenated messages, my SMSC waits to receive all the segments of the message and then processes it to the provider and sends…
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
  • 6
  • 22
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…