TLV Parameters getting changed while submitting
Posted: Mon Feb 06, 2017 5:34 pm
Hi,
I am using the below code to add TLV parameters during the submission.
Our SMSC requires us to pass 3 TLV parameters as above. We are receiving updates from them saying that we are not passing the correct TLV values. After which we took the TCP dump using Wireshark & was able to find out that the values are getting changed. Check below for the screenshot. Please point out if I am doing anything wrong here? FYI: we have purchased the DLL version 1.1.20.0

Regards,
Hisham
I am using the below code to add TLV parameters during the submission.
Code: Select all
IList<SubmitSmResp> resp = _client.Submit(SMS.ForSubmit()
.From(srcAdr, srcTon, srcNpi)
.To(dstAdr, dstTon, dstNpi)
.Coding(coding)
.Text(tbSend.Text)
.ExpireIn(TimeSpan.FromDays(2))
.DeliveryReceipt()
.AddParameter(0x1400, "002760A9")
.AddParameter(0x1401, "0000146D")
.AddParameter(0x1402, "000002C3")
);

Regards,
Hisham