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

meaning of kannel status

we have configured kannel, and the status look like SMS: received 0 (0 queued), sent 15133 (0 queued), store size 0 SMS: inbound (0.00,0.00,0.00) msg/sec, outbound (3.08,15.23,0.02) msg/sec DLR: received 14232, sent 0 DLR: inbound (11.45,5.64,0.02)…
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
  • 140
  • 1
  • 3
  • 10
3
votes
2 answers

Net::SMPP in Perl, how to send acknowledgement to SMSC from my ESME

I am writing a Perl script that would act as a receiver & transmitter using Net::SMPP. When a mobile subscriber will send a message to a short code (say 123), it would reach to my SMPP account, and my SMPP application would read the message and…
Muzammil
  • 628
  • 1
  • 9
  • 23
3
votes
1 answer

Correlating responses to requests in logica SMPP async mode

I'm trying to implement an SMPP client using logica SMPP APIs. The problem i'm facing is, How to map the request pdu with response pdu in an async mode? I thought i can do that using CommandId and sequence number. But the CommandId return by logica…
Sas
  • 271
  • 1
  • 3
  • 5
3
votes
1 answer

Difference between MAP (Mobile Application Part) and SMPP (Short Message Peer-to-Peer) Protocols

I have a basic idea about these protocols, but when it comes to put them in an integrated system, I fail to understand their position. For eg. could somebody please explain when is SMPP used and when is MAP used? Do they belong to a different…
user1693810
  • 31
  • 1
  • 2
2
votes
3 answers

Kannel and receive SMS from other SMPP to my system

I'm using kannel SMPP (kannel.org) and for me need more information how to receive SMS messages from other SMPP server. I know, for me need to add to kannel config this: group = sms-service keyword = keyword-regex = .* catch-all = yes max-messages =…
user1303913
2
votes
1 answer

Get payload info from pdu with logica SMPP

How to get payload information from pdu with logica SMPP?
Divers
  • 9,531
  • 7
  • 45
  • 88
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
  • 6
  • 22
2
votes
1 answer

Sending messages with Eventmachine and EM-Redis in ruby-smpp

I have a trying to send SMS messages with ruby-smpp. Following the project examples and some research into em-redis and eventmachine, I have the following gateway.rb configuration: loop do EventMachine::run do @@tx =…
Bek
  • 143
  • 7
2
votes
1 answer

Sending wap push

I try send wap push message. I set datacoding 0xf5 and send submit sm with following message: GSM Short Message Service User Data udh length: 6 16-bit address 05 04 Destination port 08b4 Source port 23f0 Wireless Session Protocol,…
native1989
  • 95
  • 3
  • 10
2
votes
1 answer

SMPP BIND ERROR: 0x0000000D in EasySMPP

I am implementing the SMPP client using EasySMPP for .NET The application is compiling fine but there was no successful outcome and I am getting this weird error SMPP BIND ERROR: 0x0000000D What can be done for this, please help.
Harsh Baid
  • 7,199
  • 5
  • 48
  • 92
2
votes
0 answers

Different encodings in Kannel for sms ID in submit_sm_response

We have multiple working SMPP connections set up working well with DLRs for outgoing messages, but one new operator seems to be sending the "message_id" paramater as a regular string that is hex-koded instead of the usual Octet string we get from…
Pownyan
  • 475
  • 1
  • 6
  • 23
2
votes
2 answers

SMPP binary message

What are the parameters which differentiates a text SMS and binary SMS in SMPP? I assume both the messages are encoded in submitSM object. If not please tell how SMPP binary messages are encoded into a SMS.
tiran
  • 2,389
  • 1
  • 16
  • 28
2
votes
0 answers

How to concate messages sent from smpp client using udh in NodeJS

i am developing a sms gateway where i developed a smpp server. One of my client want to send message using a 3rd party tool. Everything is working fine. Except one. If client send long message more then 254 octets then short_message parameter…
2
votes
1 answer

Why SMPP bind Transmitter return error 0x34 (ESME_RINVDLNAME)

It`s my first time to write PHP code that sends SMS through SMPP [Short Message peer to Peer] protocol by onlinecity php-smpp library from gethub URL: **https://github.com/onlinecity/php-smpp**, I used the code below which sending SMS, but its only…