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
0
votes
2 answers

Creating single conection in jsmpp not multiple

I am using JSMPP I have connected with the smsc and I am trying to send messages and trying to receive the delivery receipts I am facing a problem I just want to create a single connection. If you can help me out here that would be really great. My…
0
votes
1 answer

SMS sent via JSMPP not saved on a phone - "push" only

I'm sending SMS via JSMPP as described in SubmitMultipartMultilangualExample.java provided by JSMPP authors. Current SMS is with latin symbols only and does not overlap 160 chars limit - no multipart message is sent, single one only. So on mobile…
MainActivity
  • 1,526
  • 2
  • 11
  • 14
0
votes
1 answer

AMQ+Camel+SMPP Connection binding status for logging

I am using amq+camel+smpp for working with SMSC. I used SMPP as camel coponent and use these endpoints in routes. I want to monitor on SMPP connection binding, logs every SMSC bind and unbind in separate file than activemq.log. Kindly guide me in…
PinkSs
  • 1
  • 1
0
votes
2 answers

SMPP Client that exposes a webservice

Does this exist? None of these: SMSLib, JSMPP, Cloudhopper, Apache Camel Expose a webservice I´ve managed to create my own webservice using SMSLib, but I´ve had problems in the past: SMSLib: After getting NO_ROUTE, what should I do? So I´d like a…
sports
  • 6,889
  • 11
  • 61
  • 121
0
votes
1 answer

Encode french character in Java over smpp?

This is my code i am tring to Send Message Over SMPP but as Output ? is coming: public class Encoding { public static void main(String[] args) throws SocketTimeoutException, AlreadyBoundException, VersionException, SMPPProtocolException,…
user2888996
  • 327
  • 7
  • 18
0
votes
1 answer

Encode french character in Java?

How can i encode french Character? let's say i have String strMEssage='Pour se désinscrire du service '; String utf8 = new String(strMessage.getBytes("ISO8859_15"),"ISO8859_15"); o/P is not proper for special char ? is coming
user2888996
  • 327
  • 7
  • 18
0
votes
1 answer

getting status of a sent message in JSMPP

I am using JSMPP (Java implementation of SMPP) for sending SMS from my web application to SMS center. I have the following code to receive the delivery report of any sent SMS. public class MessageListenerImplementation implements…
laam
  • 801
  • 2
  • 8
  • 32
0
votes
0 answers

SMSLib: After getting NO_ROUTE, what should I do?

I have a webservice that receives one SMS to be delivered. One SMS = one HTTP call. That is: http://.../my-ws/?to=56998180333&body=blabla This webservice uses SMSLib, with a JSMPPGateway attached to it: JSMPPGateway gateway = new…
sports
  • 6,889
  • 11
  • 61
  • 121
0
votes
1 answer

Is there a need of SMPP Server if I want to send sms uding jsmpp?

If I get the connection details from a service provider who needs the ESME to talk to SMSC in SMPP, do I need to have my own SSMP server running on my machine too? Or can I just build a client to connect to SMSC And send SMS? I am using JSMPP to…
Madz
  • 189
  • 5
  • 18
0
votes
1 answer

How to connect Multiple gateways to send Sms

Can any one tell me how to connect multiple gateways to send Sms, actually I started SMPP_v3.4, first for the testing purpose I used Logica SMPPSim for testing the simple delivery process it works fine, but when I tried to connect multiple gateways…
Rubina
  • 45
  • 3
  • 11
0
votes
0 answers

Camel SMPP reconnection strategy

I have an application with 2 routes that are in charge of sending sms messages. We noticed that sometimes, the connection is lost (or seems to be lost). In those case, Camel tries to reconnect to the SMSC and what is happening is that in some cases…
Frederic Close
  • 8,715
  • 5
  • 52
  • 64
0
votes
1 answer

SMPP Payload with additional info?

Is it possible to send some extra data with smpp payload/pdu using custom paramters or any other way. Language API could be any java, jsmpp or any other. Kindly share an example if its possible.
Talal
  • 131
  • 1
  • 1
  • 13
0
votes
0 answers

message not being submitted to handset using jsmpp

I am trying to send a message to the handset using the following code: /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package jsmsoutgoing; import java.io.IOException; import…
Satya
  • 8,182
  • 5
  • 30
  • 49
0
votes
1 answer

Accept UniCode SMS

I want to receive UniCode SMS from jSMPP. If Data Coding is 8, I want to convert it to Unicode symbols. For this I use HexUtil.convertBytesToHexString function. But it doesn't convert it correctly. How can I convert this string? …
totali
  • 260
  • 5
  • 21
0
votes
1 answer

deliver_sm_resp in JSMPP

I will be using JSMPP for implementing a Receiver Listener for SMSC, so I will implement the MessageRecieverListener and implement the method onAcceptDeliverSm but according to the SMPP specs the application should send deliver_sm_resp as a response…
Mira
  • 271
  • 1
  • 5
  • 15