Questions tagged [smpp]

The Short Message Peer-to-Peer (SMPP) protocol is a telecommunications industry protocol for exchanging SMS messages between SMS peer entities such as short message service centers and/or External Short Messaging Entities.

461 questions
6
votes
0 answers

SMPP, SMS, GSM, Data Encodings, and Locking Shift Tables

I'm working with a corporation which is attempting to send SMS messages to people in countries all over the world using various languages. The corporation has a custom-written application which communicates using the SMPP protocol with SMSC's of…
jk.
  • 69
  • 1
  • 2
6
votes
1 answer

Triggered SMS through SOA/UMS not getting Sender Address from sdpmessagingdriver-smpp driver configuration settings

DESCRIPTION: We are using sdpmessagingdriver-smpp driver deployed on SOA server to send SMS messages. We have configured SMPP driver properties with "Sender Address" & "Default Sender Address". When we try to send SMS then it fails with error…
Himanshu
  • 825
  • 2
  • 10
  • 24
6
votes
2 answers

Debian 7.11 - How to capture SMPP all arrived and sent packets by some ports

I'm using following code for capturing incoming and outgoing tcp packets by ports: tcpdump -i any -s 0 -vvv -A port 3727 or port 5016 or port 3724 -w /home/admin/dump1.cap But tcpdump captures only incoming packets, I need incoming and outgoing…
SBotirov
  • 13,872
  • 7
  • 59
  • 81
6
votes
1 answer

Java String and Hex character representation

I am trying to send a square bracket to a phone using logica smpp 1.3.7. I use dataCodingSetting of 3 - as per the network I asked about this. They advised that I need to package my message as below: You want to send ASCII Send the…
lulu88
  • 1,694
  • 5
  • 27
  • 41
5
votes
1 answer

DLR Routing failure in Kannel in a situation where there is a separate receiver and transceiver bind

I have a Kannel gateway with multiple SMPP binds ( one operator requires separate transmitter and receiver binds while another permits transceiver binds ). The transceiver binds do not display this problem, so I will not delve into more detail on…
Ngure Nyaga
  • 2,989
  • 1
  • 20
  • 30
5
votes
1 answer

how to use OpenSMPP

I wanted to know if anybody has an idea how to use opensmpp, I want to create a java program that connects through an smpp interface to send sms messages. If you can provide me with a guide and if there are any opensource applications that does the…
OKAN
  • 421
  • 1
  • 5
  • 10
5
votes
3 answers

Java SMPP implementation to receive SMS

What's the best JAVA implementation of SMPP protocol, needed to provide listener on SMSC to receive messages "Reciever accepts Deliver_SM" With best I mean simple, documentation, Tutorials, Forums.. Appreciate your help Thanks :)
Mira
  • 291
  • 1
  • 6
  • 16
4
votes
2 answers

Using Kannel with and SMSC simulator for sending and receiving SMS

I am working on a project Using Kannel in order to send/receive SMS, So far we were told to read the documentation about Kannel and also do a simulation. I was able to use Opensmpp to send SMS but i am having troubles in receiving SMS to my Kannel…
Saad Touhbi
  • 345
  • 1
  • 3
  • 13
4
votes
3 answers

SMPP delivery report

How to check for the delivery report of the sent message. I am using PHP and I have the SMPP account. Can somebody help me with the checking of delivery report? Will I get a delivery report as message like we get in our mobile? Or the status of the…
Ranoy
  • 98
  • 2
  • 4
  • 17
4
votes
2 answers

How to connect SMSC server using SMPP from PHP

I am trying to connect SMSC server using SMPP from PHP to send and receive sms. It would be easy if I can find some good php classes or already built script so that I don't have to bother in details? so, does anyone have experience with this or at…
Prakash
  • 2,749
  • 4
  • 33
  • 43
4
votes
2 answers

Am i using eventmachine in the right way?

I am using ruby-smpp and redis to achive a queue based background worker to send SMPP messages. And i am wondering if I am using eventmachine in the right way. It works but it doesnt feel right. #!/usr/bin/env ruby # Sample SMS gateway that can…
Lisinge
  • 2,017
  • 2
  • 27
  • 44
4
votes
1 answer

WAP PUSH over SMPP

Related to Detect an MSISDN (mobile number) with the browser What SMPP parameters should I use for sending WAP PUSH SMS? Thank you
Victor
  • 41
  • 3
4
votes
1 answer

How do I send SMS using Net::SMPP in Perl?

I am trying to send a SMPP message using the Net::SMPP module, but it's giving the error below: Message state is 2 Response indicated error: Message ID is invalid (ESME_RINVMSGID=0x0000000C) at send.pl line 28. #!/usr/bin/perl #use strict; #use…
Gruther
  • 93
  • 3
  • 8
4
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
  • 841
  • 13
  • 37
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
  • 6,745
  • 15
  • 60
  • 105
1
2
3
30 31