Search found 1 match

by Rich
Tue Feb 19, 2013 3:26 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Sequence number problem
Replies: 2
Views: 13653

Sequence number problem

If I prepare the submit as below to get the sequence number:


var pduBuilder = SMS.ForSubmit()
.Text(message.Message)
.From(message.Source)
.To(message.Destination)
.DeliveryReceipt()
.Coding(coding); ;

foreach (var pdu in pduBuilder.Create(bindClient))
{
pdu.PriorityFlag = (byte ...