tags:

views:

491

answers:

1

Hi all,

We developed application written in Java/J2EE using which send and receives SMS from service provider and presently we are facing problem that there is some delay in messages and it cost's more for us.

by considering above situation we planned to move to GPRS technology (which is more cheaper and considerably fast).

So please suggest me course of action's from where I can start with and send if any sample application for GPRS enabled system in Java.

regards,

Mahesh

+1  A: 

With GPRS you would need a client application running in the mobile device. This means a lot of headaches for developing, deploying and supporting. Also, although it would be trivial for the clients to send messages, receiving won't be so straightforward. You would need to implement some kind of a "push" service. One of the problems would be that the client application should be always running.

In general, it isn't easy to replace SMS messages with GPRS communication. You may need to considerably change the architecture of your system.

kgiannakakis
+1, it is a thoughtful advice
Michael Lange