File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Java Micro Edition and the fly likes Location Exception while using GPS(Location API) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Mobile » Java Micro Edition
Reply Bookmark "Location Exception while using GPS(Location API)" Watch "Location Exception while using GPS(Location API)" New topic
Author

Location Exception while using GPS(Location API)

Meenal Patil
Greenhorn

Joined: Sep 09, 2008
Posts: 1
Hi all,

I have downloaded google map application on T715 mobile its working fine,its java application.So as per my understanding that is also using Location API.

So I am tried below code in j2me using Location API(JSR-179).Its working fine on emulator.
But when I am trying the same on Sony erisccon T715 mobile its giving below exception:

Exception:
javax.microedition.location.LocationException:All service providers are out of service.

Code:

try {

// Create a Criteria object for defining desired selection criteria
Criteria cr = new Criteria();
LocationProvider lp = LocationProvider.getInstance(cr);

l = lp.getLocation(60);

c = l.getQualifiedCoordinates();

//cityMap.setCategories(selectedCategories);
if (c != null) {
// use coordinate information
double lat = c.getLatitude();

//latitude="";
latitude = ""+lat;
Latitude.setString(latitude);
double lon = c.getLongitude();
longitude =""+lon;
Longitude.setString(longitude);
}
}
catch (LocationException e) {
alert = new Alert("LocationException");
alert.setString("Unable to retrive location information:" + e);
alert.setTimeout(2000);
display.setCurrent(alert);
// not able to retrive location information
//e.printStackTrace();
} catch (InterruptedException ie) {
alert = new Alert("InterruptedException");
alert.setString("Operation Interrupted:" + ie);
alert.setTimeout(2000);
display.setCurrent(alert);

}

}

Please suggest me any solution for this...

Thank and regards.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Location Exception while using GPS(Location API)
 
Similar Threads
need to construct a url for google maps (and redirect to it)
Problem With J2ME and Bluetooth
GPS not working(unable to get latlon info
Execution time problem in sending message
GPS vs. MAP applications?