2

I want to develop a web application in JSP ,in which a user can sent their id using their mobile number and after that they will get their data like total amount,balance etc. I am not getting how can i do this? If you can provide any api name and example that will be great for me.

Thanks

PrateekSaluja
  • 14,680
  • 16
  • 54
  • 74
Prakash Panjwani
  • 2,540
  • 5
  • 23
  • 34

3 Answers3

0
  • You accept user phone no with some form persist it.
    • You map phone no with user account
    • Write a service which will send SMS to mobile no, after reading user data on timely basis.

Here you can check how to send sms from JAVA

Community
  • 1
  • 1
jmj
  • 237,923
  • 42
  • 401
  • 438
0

To interact with a GSM Modem (such as a mobile phone), you can use SMSLib. You will have to write some sort of backend though since SMSLib is a Java library.

npinti
  • 51,780
  • 5
  • 72
  • 96
0

AFAIR using the WAP protocol automatically sends the MSISDN (phone number) included into the WAP request. This may be a starting point (get the client to execute a WAP request to your server).

Robert
  • 39,162
  • 17
  • 99
  • 152