vote up 5 vote down star

I'm using sockets to read all incoming SMS:

 `smsAddr.SetTextMatch(KNullDesC8);`

The ones that belong to me I accept:

iReadSocket.Ioctl(KIoctlReadMessageSucceeded, iStatus, NULL, KSolSmsProv);

The ones that are malicious (like current Silence SMS threat) I would stop and the others I would like to pass into Inbox.

Currently my problem is in forwarding SMS into Inbox - they will appear there only after rebooting device.

Is there any API or solution to force Symbian to retry writing SMS into Inbox?

flag

1 Answer

vote up 1 vote down check

You can insert messages manually - take a look at this example in the Forum Nokia Wiki. Note, however, that the example does not set character set and encoding - you may have to deal with character set conversion and encoding, which will be particularly complicated for binary messages.

How are you currently forwarding messages to the Inbox?

link|flag
Currently I'm not - that's the problem. Or actually I'm creating some of my own messages (notices to user), but they are just ordinary SMS. I'm more afraid about MMS, Email, binary settings. – Riho Jan 7 at 9:08
Seems that this is the only solution. Looks like binary messages (like phone settings) are coming in through different port, so they are not caught at all. – Riho Jan 19 at 6:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.