how do I access mobile inbox, call log, photo gallery using j2me APIBridge?

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-29 16:37:06

APIBridge Jar is based on Symbian Operating System Phones, mostly S60 Series. So in your case you can not read access Inbox,call logs, photo gallery using APIBridge.jar.

I read the details here for API Bridge Interface. It says that. The APIBridge is a Symbian server that exposes an HTTP interface for communication between the server and its clients. The APIBridge can be used by making an http call to the local host port that the APIBridge listens to. The following architecture diagram explains the different parts of the system:

  • Access Layer J2ME API :
    • The J2ME API provides java applications with a function-based interface to the services of the APIBridge. It performs the following activities: Authentication with the Bridge
    • HTTP requests to the APIBridge from the function calls, abstracting this complexity from the application developer;
  • Framework Layer APIBridge Server :
    • The APIBridge Server is responsible for authenticating clients, receiving requests, routing requests to the appropriate APIBridge plug-in for execution, and returning the results.
  • ECOM Plug-ins Layer Plug-ins :
    • Plug-ins are responsible for analyzing the parameters in the request, calling the appropriate Symbian APIs to execute it, and creating the HTTP response.

So, from the above description it you can see that it uses HTTP Connection in APIBridge Interface, this is the reason that your application is trying to access the Internet Connection.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!