Send the message containing an underscore: 5F vs 11
Posted: Tue Sep 08, 2009 11:01 am
I try to send the message containing an underscore, but it is transferred in the wrong coding.
GSM default alphabet (7 bit)
0x11 17 LOW LINE _
I receive the following code at sending: 0x5F
Whether this error will be corrected?
Code: Select all
Dim sm As SubmitSm
Dim Message as String = "test _ test"
sm = New SubmitSm
sm.Command = CommandSet.SubmitSm
sm.DataCoding = ALT.SMS.DataCodings.Default
sm.DestAddr = DestAddr
sm.DestNpi = Convert.ToByte(DestNpi)
sm.DestTon = Convert.ToByte(DestTon)
sm.SrcAddr = SrcAddr
sm.SrcNpi = Convert.ToByte(SrcNpi)
sm.SrcTon = Convert.ToByte(SrcTon)
sm.RegisteredDelivery = RegisteredDelivery
sm.ShortMessage = Message
ret = ObjSmppClient.Submit(sm)
0x11 17 LOW LINE _
I receive the following code at sending: 0x5F

Whether this error will be corrected?