- Product Manual
- Introduction
- SMS technology
- Installation Guide
- User Guide
- Developers Guide
- Examples and Solutions
- Appendix
- A - Terms and definitions
- B - References
- C - Message types
- Introduction
- OTA bitmap
- Operator logo I.
- Operator logo II.
- Ringtone
- Wappush
- Binary XML
- VCard
- VCalendar
- Special SMS Message Indication
- Bookmark
- MMS:XML
- WAP Browser Settings
- SyncML settings
- OMA OTA Settings
- USSD
- WAP Push SL
- Picture message
- D - Database connection strings
- E - SMS alphabet
- F - GSM error codes
- G - SMSC settings
- H - MMSC settings
- I - GSM operators
- J - SMPP providers
- K - GSM modems, phones
- L - Error codes
- M - Country codes
- O - SMPP Error codes
- W - Wireshark Capture
- SMS FAQ
- Feature list
- Commercial Information
- Search
Ozeki NG SMS Gateway
Introduction
Ozeki NG - SMS Gateway allows you to send a bookmark message, so you do not have to commit webpage addresses to memory.
Why it is convenient
This message type is similar to Wap Push. However, the link sent will be included in the set of bookmarks, so you can easily open the page the link leads to in the browser.
Message type
SMS:WAPPUSH:BOOKMARK
The format of the message data is:
<CHARACTERISTIC-LIST> <CHARACTERISTIC TYPE="BOOKMARK"> <PARM NAME="NAME" VALUE="..." /> <PARM NAME="URL" VALUE="..." /> </CHARACTERISTIC> </CHARACTERISTIC-LIST>
Look at an example:
<CHARACTERISTIC-LIST> <CHARACTERISTIC TYPE="BOOKMARK"> <PARM NAME="NAME" VALUE="Ozeki NG Webpage" /> <PARM NAME="URL" VALUE="http://www.ozekisms.com" /> </CHARACTERISTIC> </CHARACTERISTIC-LIST>
SQL example:
If you use the Database user to send and receive SMS messages with Ozeki NG - SMS Gateway, you can use the following SQL statement to send a webpage bookmark message:insert into ozekimessageout (receiver,msgtype,msg,status) values (�+36205222245�, �SMS:WAPPUSH:BOOKMARK�,�<CHARACTERISTIC-LIST><CHARACTERISTIC TYPE="BOOKMARK"> <PARM NAME="NAME" VALUE="Ozeki NG Webpage" /> <PARM NAME="URL" VALUE="http://www.ozekisms.com" /> </CHARACTERISTIC></CHARACTERISTIC-LIST>�,�send�);