my dog learned polymorphism
The moose likes Java Micro Edition and the fly likes Application not authorized to access the restricted 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 "Application not authorized to access the restricted api" Watch "Application not authorized to access the restricted api" New topic
Author

Application not authorized to access the restricted api

chandrap prakash
Greenhorn

Joined: Sep 19, 2008
Posts: 28

Hi,

In my application i am using File Connection API to browse and access a file from the phone memory.The j2me code is

String initDir = System.getProperty("fileconn.dir.photos");

private FileConnection currentRoot = null;

if (initDir != null)
{
try
{
currentRoot = (FileConnection) Connector.open(initDir);

}
catch (Exception e)
{
showAlert("ConnectionNotFound : "+e.getMessage());

}
}


This code works fine in Sony mobiles but throws an exception "Application not authorized to access the restricted api" in Nokia and Motorolla devices.

I am unable to understand this problem.

Thanks & Regards,

Chandra Prakash
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Application not authorized to access the restricted api
 
Similar Threads
java.lang.SecurityException
ConnectionNotFoundException
Send a file to server
"Allow Application to read data In" Block this alert
Regarding FileConnection ...