Search found 8 matches

by robindas
Thu Jan 18, 2018 3:47 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: special character in English
Replies: 7
Views: 41430

Re: special character in English

Dear sir, Got the following answer from smpp provider - Which DataCoding to use. - Which character table (Encoding) should be used for DataCoding. - Which concatenation parameters should be used. 1.DataCoding to use is ASCII 2.You have to pass parameter concat=1, in case of multipart messages throug...
by robindas
Wed Jan 17, 2018 6:50 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: special character in English
Replies: 7
Views: 41430

Re: special character in English

sir really thanks for reply. I had forwarded the queries to the smpp provider and will share with you asap i get it. just to bring your notice when i am using coding as latin1 i am able to send special character successfully. but at a same time when i am sending a long msg i.e more than 160 char usi...
by robindas
Wed Jan 17, 2018 5:35 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: special character in English
Replies: 7
Views: 41430

Re: special character in English

sir, a basic special character like '@' in long sms i.e more than 160 character. here is my code DataCodings submitDataCoding = DataCodings.Default; bool isunicode = bool.Parse(reader[4].ToString()); if (isunicode == true) { submitDataCoding = DataCodings.UCS2; } IList<SubmitSmResp> responses = clie...
by robindas
Wed Jan 17, 2018 5:29 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: special character in English
Replies: 7
Views: 41430

Re: special character in English

sir,
a basic special character like '@' in long sms i.e more than 160 character
by robindas
Wed Jan 17, 2018 5:08 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: special character in English
Replies: 7
Views: 41430

Re: special character in English

Please Please help me in sending special character in long sms more than 160 character as default encoding does not support special character and latin1 encoding in not sending long msg using

client.Submit(
SMS.ForSubmit()

Please please help.
by robindas
Wed Jan 17, 2018 1:22 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: special character in English
Replies: 7
Views: 41430

special character in English

Hi,

When i am using default encoding special charter were displaying as ? in English.
and if i use latin1 special character were proper but unable to get long concatenated message of more than 160 character.

Please Please help which data encoding shall i use?

thanks
Robin das
by robindas
Wed Jan 17, 2018 1:19 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Some time i getting message id and some time i am not
Replies: 1
Views: 17875

Re: Some time i getting message id and some time i am not

This is closed i need to reconnect in case of lost connection
by robindas
Wed Jan 17, 2018 10:25 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Some time i getting message id and some time i am not
Replies: 1
Views: 17875

Some time i getting message id and some time i am not

Hi, some time i am getting proper response and some time message id as null is it because of the trial version of dll Code i am using foreach (DataRow reader in dt.Rows) { DataCodings submitDataCoding = DataCodings.Default; bool isunicode = bool.Parse(reader[4].ToString()); if (isunicode == true) { ...