cloudhopper-smpp icon indicating copy to clipboard operation
cloudhopper-smpp copied to clipboard

Efficient, scalable, and flexible Java implementation of the Short Messaging Peer to Peer Protocol (SMPP)

Results 34 cloudhopper-smpp issues
Sort by recently updated
recently updated
newest added

We have noticed that when the network between client and server or threads get stuck on line 530 in DefaultSmppSession. The code is: ``` java // write the pdu out...

Hello, I have and `DefaultSmppClient` connected to an SMSC that delegate pdu received to an `SmppSessionHandler`. I would like to "qualify" those received Pdu with the `SmppSession`. ie: I would...

Hi, We're using `cloudhopper-smpp` in an application using Akka Actors in Scala and would like to avoid blocking threads. While the underlying Netty IO used by `cloudhopper` is non-blocking, many...

Hello, Need help regarding below error com.cloudhopper.smpp.util.DeliveryReceiptException: Unable to find [sub] field o r empty value in delivery receipt message Delivery Receipt Parse Message works well with other SMSCs but...

Is there a way to control SMPP Server default enquire link frequency ?? what i mean i need to disable enquire link sent from smpp server or even let enquire...

Is there any code implementing concatenation of a list of single sms parts based on UDH into long messages (what that normally mobile phones do)? P.S. may be considered as...

easily reproducible on both master and netty4, connect and then shutdown the server ``` public static void main(String[] args) throws UnrecoverablePduException, SmppChannelException, InterruptedException, SmppTimeoutException { DefaultSmppClient clientBootstrap = new DefaultSmppClient(Executors.newCachedThreadPool());...

I was building a new performance test https://github.com/krasa/cloudhopper-smpp/commit/b458153ad8061968b777166999b2d87cb02d38b7 and when I call DefaultSmppClient#destroy while other threads are binding, then it will never shutdown. (reproducible in majority of runs, when the...

when DeliveryReceipt is initialized by constructor ``` public DeliveryReceipt(String messageId, int submitCount, int deliveredCount, DateTime submitDate, DateTime doneDate, byte state, int errorCode, String text) ``` , rawErrorCode is not set....

Run com.cloudhopper.smpp.demo.ClientMain without a server: ``` 2015-04-13 17:04:21,110 [nioEventLoopGroup-2-1] TRACE c.c.s.c.SmppClientConnector - channelRegistered 2015-04-13 17:04:21,110 [main] DEBUG c.c.smpp.impl.DefaultSmppClient - Waiting for client connection to /127.0.0.1:2776 2015-04-13 17:04:22,116 [nioEventLoopGroup-2-1] TRACE c.c.s.c.SmppClientConnector...