I have to write a simple mobile application that is able to receive broadcast from a server, connected using GPRS, over a secure SSL connection.
The amount of data the mobile needs to receive is very small (a string of about 100 characters length for a single broadcast and maximum 10 broadcasts per minute).
I need to display it on screen, generate an alert sound, and vibrate the device.
The client doesn't need to send anything back to the server. (Of course, at the time of initialization the client app needs to send some data for authorization.)
The target mobile platforms are Symbian S60 and Blackberry.
How can I do this? What tools, SDK and third-party framework (if any) should I use?
I am familiar with Java and network programming but not for mobile devices.