0

We want to allow data entry from a feature phone to a SQL Server table. Where is there an article or example of how to do this?

Gary Barrett
  • 1,764
  • 5
  • 21
  • 33

1 Answers1

1

Using Java ME Application, you can not directly insertion of data entry to any remote server. To achieve requirement, you must use a mechanism called Web-Service. Your Java ME application will pass the data ( which is to be inserted into database on remote server ) to that Web-Service and the Web-Service will do the final job.

have a look at my answer Java ME with Web-Service.

Also look at this quetsion How to use web service in J2ME application ?

Community
  • 1
  • 1
Lucifer
  • 29,392
  • 25
  • 90
  • 143