* The NotificationProcessor reads the
* binary SMS notification message and extracts
* informations from it that are stored into a
* passed hashtable
*/
NotificationProcessor processor = new NotificationProcessor();
/*
* The hashtable to be passed to the
* notification processor to be filled
* with data from the binary SMS from
* the server. See
* NotificationProcessor.processMessage
*/
Hashtable smsData = new Hashtable();
//getData() returns an array of bytes
processor.processMessage(smsData, removeHeader(d.getData()));
if (smsData != null) {
StaticDataHelper.log("[SMS] Data from SMS message:\n" + smsData.toString());