Hi Kamran,
The Inbox will show the hex value, for example “& #9986;”. (note I added a space to prevent the actual character being shown)
But the HTTP recvmsg message will also be URL encoded, so the above example would be displayed as “%26%239986%3B”, where the & was URL encoded to %26, the # to %23, and ; to %3B. Since these are html entity hex format characters, they probably shouldn’t be URL formatted, but currently the iSMS isn’t setup to look for these characters, so it will require an extra step to URL decode these characters when using HTTP recvmsg.
Bryon
-
This reply was modified 7 years, 10 months ago by Bryon Davis.
-
This reply was modified 7 years, 10 months ago by Bryon Davis.