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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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 ? |
|||
|
|