shorty icon indicating copy to clipboard operation
shorty copied to clipboard

An asynchronous SMPP client and server built on Node.js. Shorty is sponsored and maintained by SMS Cloud, a subsidiary of Roave

Results 13 shorty issues
Sort by recently updated
recently updated
newest added

To anyone facing issues with the PDU Parser's (pdu-parser.js) short_message field: ``` else if (field.type === "string") { var length = result[field.length_field]; var temp = new Buffer(length); // buffer.copy(temp, 0,...

Parsing an incomming (deliver_sm) sms, the library crashed with the following error: ``` RangeError: out of range index at RangeError (native) at Object.exports.parse (.\node_modules\shorty\lib\pdu-parser.js:163:20) at Object.exports.fromBuffer (.\node_modules\shorty\lib\data-handler.js:76:22) ... ``` It...

Hi, I use shorty in my sms application for conneccto to SMPP v3.4 Server. I looking for contributors and testers. My Appplication [Scriptbox](https://github.com/badlee/scriptbox) Regards.

Hi, I am looking forward for documentation for shorty and manual for its possibilities. ## Anshu

my idee is that the client should automatically convert the charset (ie UTF-8 with only GSM 03.38 chars) to GSM 03.38 or if need (Unicode with other chars as in...

Hi Can you guide how can we handle concatenated SMS in submit_sm >. I don't want to use payload here. I am not able to recognize the concatenation flag ....

Hi, Thank you very much for your good job. However, there is problems with pdu parsing. As far as know, short message may come from either short_message or message_payload fields....

The change allows for connecting a multi-client to multiple SMPP servers via client config.json. How does it look? Is it a good model? Do you think there is a general...

If we want to connect to multiple SMPP servers, using a single clustered node.js app would it be advisable to create multiple Shorty client instances in each worker? What are...

Was getting garbage data from incoming short_message because length that was used in the buffer copy was invalid.