Search code examples
java.netiisjava-memobile-application

Java based mobile app+IIS server


I want to develop a mobile application which can work in GPS/GPRS based phones. I heard like Java is the most suitable platform to develop that. But I want to connect this mobile application to the IIS server. Is it possible?

I have one more query. Is it possible to deploy applications developed using .net mobile in basic gps phones?


Solution

  • Yes. It is possible.

    In order to communicate with your IIS server ,

    1. you can create webservice and deploy it over IIS and consume it from j2me app/
    2. you can use URLConnection to make GET POST request to your IIS Server from J2ME Application.

    First one is more preferable.