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?
Asked
Active
Viewed 558 times
1 Answers
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 ?