开发者

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

开发者 https://www.devze.com 2022-12-30 17:20 出处:网络
I want would like to make my BlackBerr开发者_如何学编程y application available for download through a website using the BlackBerry browser. Is this possible?There are two ways to allow your BlackBerry

I want would like to make my BlackBerr开发者_如何学编程y application available for download through a website using the BlackBerry browser. Is this possible?


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

0

精彩评论

暂无评论...
验证码 换一张
取 消