Menu
  • HOME
  • TAGS

php-smpp Library not working and fails after two to three SMS

smpp,php-socket

It was the bug which i won't able to identify/ rectify. then i used an other library from http://www.codeforge.com/read/171085/smpp.php__html and it really saved me.

SMPP client is adding an ¿ to the end of the message

c++,smpp

Found the problem in the end, it was due to an option in the smpp library that defaults to true, called nullTerminateOctetStrings It was adding the 00 to the end of the message, sound slike this was required by the SMPP 3.4 standards, but our smsc didn't like it. I...

what is the maximum length of concatenated sms in smpp?

android,ios,sms,smpp

Theoretically, the maximum payload can be 64k, or approximately 256 message parts. Practically, though, it depends on supplier. At Clickatell, for example, we split the messages into 35 message part parts before sending it on to our suppliers. Officially, though, there isn't a standard that would answer your questions.

Send long sms via Opensmpp

java,sms,smpp,opensmpp

Good to hear it worked! As a short summary, this would be the way to add additional header information for multipart/concatenated SMS delivery using OpenSmpp: SubmitSM smRequest = new SubmitSM(); smRequest.setEsmClass((byte)Data.SM_UDH_GSM); The above code was taken from this article about multi-part SMS that includes sample code and extended technical details....

How to Check Server is accepting connections

c#,sockets,telnet,tcpclient,smpp

TcpClient tcpClient = new TcpClient(); try { tcpClient.Connect("152.26.53.39", 2775); Console.WriteLine("Port 2775 Open"); } catch (Exception){ Console.WriteLine("Port 2775 Closed"); } ...

TX and RX on different IP

sms,sms-gateway,smpp

We need to look a bit closer at your scenario. If you use the TX session for DLRs (delivery reports) encapsulated in deliver_sm packets, then you are violating the specs and the malfuction is on your side. A TX session is not allowed to receive deliver_sm packets. Checkout http://opensmpp.org/specs/SMPP_v3_4_Issue1_2.pdf, Section...

How do I brand sms sent via kannel and nexmo

sms,smpp,kannel,nexmo

As long as your operator allows alpha numeric IDs (whose max is around 11 xters), then there is no problem. The "to" field can have "customercare" as the sender ID. The message will go through without an issue and the subscriber will receive it. Kannel doesn't have a restriction.

SMPP Server and Client applications C#

smpp

Depending on your attitudes you may either try to build SMPP protocol functionality or use some ready available component, especially one of those available for .NET world. 1) Building SMPP client/server on your own is certainly time consuming. Most probably not justified economically mostly because SMPP is complicated, supporting multitude...