One of the more interesting technical support incidents of the past week comes from Mohit Kumar Sethi at 3i Infotech Consumer Services Ltd.
Thursday, 5 November 2009
Bug Sending Long Binary SMS Messages to Java Apps on Motorola Devices
Posted by
Brett Warthen
at
Thursday, November 05, 2009
Labels: Java, Java MIDlet, JSR-205
Monday, 2 November 2009
SMS and MMS with the Novatel Merlin XU870 ExpressCard Modem
Posted by
Brett Warthen
at
Monday, November 02, 2009
Labels: 3G modem, ExpressCard modem, GSM modem
Thursday, 29 October 2009
Using NowSMS as a WAP Push Proxy Gateway (PPG)
NowSMS supports the Open Mobile Alliance (OMA) Push Access Protocol (PAP), which allows other applications to use NowSMS as a WAP Push Proxy Gateway (PPG).
- text/vnd.wap.si
- text/vnd.wap.sl
- application/vnd.oma.drm.rights+xml
- text/vnd.wap.emn+xml (or application/vnd.wap.emn+xml)
- text/vnd.wap.co
- text/vnd.wap.connectivity-xml
- x-wap-application:push.sia
- x-wap-application:wml.ua
- x-wap-application:wta.ua
- x-wap-application:mms.ua
- x-wap-application:push.syncml
- x-wap-application:loc.ua
- x-wap-application:syncml.dm
- x-wap-application:drm.ua
- x-wap-application:enm.ua
- x-wap-application:wv.ua
Posted by
Brett Warthen
at
Thursday, October 29, 2009
Labels: WAP Proxy, WAP Push, WAP Push Proxy Gateway
Monday, 26 October 2009
Sending SMS from Microsoft Excel
A recent posting on the NowSMS Discussion Board has some interesting information on sending an SMS a link within an Excel spreadsheet.
The alternative approach is to write a simple VBScript macro instead.
Today was my first attempt at writing one ... but I did manage to create a button in a spreadsheet, where when you click on the button, it reads data from the spreadsheet to send out an SMS.
Here's what I did ...
From the Developer menu in Excel, I added an Active X Command Button.
I then associated the following code with my command button:
Private Sub CommandButton1_Click()
Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP")
URL = "http://192.168.0.222:8800/"
objHTTP.Open "POST", URL, False
objHTTP.send ("&PhoneNumber=" + Range("a9").Text + "&text=" + Range("a10").Text)
End Sub
In this particular case, I am extracting the phone number from cell A9, and the text to send from A10.
Once I exit design mode, I can click on the button, and it triggers this code, which makes the HTTP submission to NowSMS.
I'm using HTTP POST instead of GET to avoid some URL encoding issues.
It's not as easy as using HYPERLINK, but hopefully you can adapt this to your scenario.
Posted by
Brett Warthen
at
Monday, October 26, 2009
Wednesday, 14 October 2009
SMS and MMS with the Alcatel One Touch X200 or X060 USB Modem

Posted by
Brett Warthen
at
Wednesday, October 14, 2009
Labels: 3G modem, GPRS modem, GSM modem, USB modem



