PDA

View Full Version : sms and the sharp z-800


mroskothen
04-01-2002, 07:02 PM
asked that already a while ago but here it goes again:

Has anyone gotten a BREW-directed SMS message to work on the sharp phone? I followed the knowledge base article (id52) and got it to work on the qcp3035 but not on the sharp phone. Does anyone know when this will work on the z-800?
Thanks, Markus

mroskothen
04-02-2002, 01:14 PM
this is from the knowledge base document 52:

Please note that TAPI interface currently works only on the phone, ...

so the document talks about 'the phone'. Where can I buy 'the phone'?

My sharp has build 1.08.

mroskothen
04-05-2002, 10:16 AM
the solution to my problem was upgrading to 1.09. Now a BREW-SMS message can wake up applications. The next problem to solve is how to extract the SMS message. There is a function to do this:

ITAPI_ExtractSMSText(ITAPI * po,const AEESMSMsg * pMsg)

However, you have to pass a 'AEESMSMsg' into it and I can't see where this is coming from.

Mahesh
04-11-2002, 02:32 PM
Applications get the AEESMSMsg in the dwParam when they register for the NMASK_TAPI_SMS_TEXT notification.

The typical means to use ITAPI_ExtractSMSText() is:

1. Using the MIF Editor (or using ISHELL_RegisterNotify()), register for NMASK_TAPI_SMS_TEXT notification from the AEECLSID_TAPI class.

2. When an incoming SMS text msg comes into the system, the app is sent EVT_NOTIFY event with dwParam pointing to the AEESMSMsg structure.

3. Pass this structure to ITAPI_ExtractSMS() to extract the formatted text portion of the message.

--Mahesh
BREW Support