{"id":852,"date":"2020-03-08T12:18:49","date_gmt":"2020-03-08T12:18:49","guid":{"rendered":"https:\/\/mobiletidings.com\/?p=852"},"modified":"2020-03-08T12:18:49","modified_gmt":"2020-03-08T12:18:49","slug":"sending-ota-bookmark-over-sms","status":"publish","type":"post","link":"https:\/\/techsofar.com\/sending-ota-bookmark-over-sms\/","title":{"rendered":"Sending A Bookmark Over SMS"},"content":{"rendered":"

Another use for SMS is configuring phones over the air (OTA). There are elaborate standard specifications written by the WAP Forum (now Open Mobile Alliance) and somewhat proprietary standards developed by Nokia and Ericsson.<\/p>\n

Today I\u2019ll show in detail how to send a bookmark according the Nokia \/ Ericsson specification. The specification is somewhat older, it dates from September 2001, but it seems almost all Nokia and many Ericsson devices still support this.<\/p>\n

The bookmark is described in an XML file like the following:<\/p>\n[php]\n

<?xml version="1.0"?>
\n<!DOCTYPE CHARACTERISTIC-LIST SYSTEM "settings.dtd">
\n<CHARACTERISTIC-LIST>
\n<CHARACTERISTIC TYPE="BOOKMARK">
\n<PARM NAME="NAME" VALUE="Mobile Tidings"\/>
\n<PARM NAME="URL" VALUE="http:\/\/mobiletidings.com"\/>
\n<\/CHARACTERISTIC>
\n<\/CHARACTERISTIC-LIST><\/p>\n[\/php]\n

As before we send this XML document using an unconfirmed push. Here are the layers we need to implement:<\/p>\n