-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sms length error #6
Comments
Try creating multiple pdus. `OutgoingSmsPdu[] pdus = null; try |
It seems like working but sms looks like 7bit string (bunch of numbers) but not the text which i sent.
|
Sending ascii sms text like below (text length < 160)
SmsSubmitPdu pdu;
byte dcs = (byte)DataCodingScheme.NoClass_7Bit;
pdu = new SmsSubmitPdu(sms, phoneno, smsc, dcs);
comm.SendMessage(pdu);
but it gives error like "Text is too long. A maximum of 160 resulting septets is allowed. The current input result in 243 septets." How to avoid that error?
The text was updated successfully, but these errors were encountered: