Code: Select all
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) message.Priority;
message.Sequence = pdu.Sequence;
}
message.TimeProcessed = DateTime.Now;
db.SubmitChanges();
bindClient.SubmitAsync(pduBuilder);
Then I cannot tie the submitsmresp to the sequence number to get the smsc messageid.
Is there another way to go about this?
This is pretty urgent, I am upgrading a live system with the 1.1 version and this is holding things up, a quick response will be appreciated
