Multi Part SMS receiving and sending

.NET library for SMPP protocol
Locked
muzaffaralisyed
Posts: 1
Joined: Tue Jan 25, 2011 9:11 am

Multi Part SMS receiving and sending

Post by muzaffaralisyed » Tue Jan 25, 2011 9:39 am

Hello my company is interested in purchasing your API. However before purchasing it just wanted to know if your API supports Multi-part sms receiving and sending and how to concatenate the multiple parts into a single message.

When on receiving end does the API automatically concatenates the segments received as a single message or do we have to merge the segments ourselves?
When sending does the API automatically makes segments and delivers the message to SMSC or we have to develop the segmentation logic ??

Thanks
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: Multi Part SMS receiving and sending

Post by alt » Tue Jan 25, 2011 9:56 am

Hello,

SmppClient has methods SubmitText or SubmitTextAsync to send long text using concatenated messages
http://www.inetlab.com/Products/Inetlab ... itText.htm

API it self doesn't provide concatenation of DeliverSm messages. But SmppClientDemo application has example how you can do it in your application.
Locked