user384636
user384636

Reputation: 579

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?

Upvotes: 0

Views: 294

Answers (1)

Jigar Joshi
Jigar Joshi

Reputation: 240928

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.

Upvotes: 1

Related Questions