BlackBerry: is it possible to download application from a website (Over the Air) ?

不想你离开。 提交于 2019-12-02 00:20:33
Ryan Shripat

There are two ways to allow your BlackBerry application to be downloaded from a website:

1.Over the Air distribution

To allow users to install the application over the air you will need to have a web server. On the web server you will need two files:

  • Yourapplication.cod
  • Yourapplication.jad

On your web server you will need to setup three MIME types:

  • .jad files: text/vnd.sun.j2me.app-descriptor
  • .cod files: application/vnd.rim.cod
  • .jar files (optional): application/java-archive

However, if the .cod file is larger than 64KB, it must be unzipped on the web server, otherwise you may get a "907 invalid cod HTTP error 404" error message. To do this, rename the .cod to .zip, then open the .zip file and place the file contents in the same folder on the web server alongside your .jad file. (See: https://stackoverflow.com/a/5788124/1943). Links to download your application should be to the .jad file.

2.Using the BlackBerry Application Web Loader

This is an ActiveX plugin that facilitates the download of the application. See the developer documentation for more information on this.

Reference:

Vivart's link: http://supportforums.blackberry.com/t5/Testing-and-Deployment/How-to-Deploy-and-Distribute-Applications/ta-p/442794

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