BlackBerry:是否可以从网站(无线)下载应用程序?
我想让我的 BlackBerry 应用程序可供使用 BlackBerry 浏览器通过网站下载。这可能吗?
I want would like to make my BlackBerry application available for download through a website using the BlackBerry browser. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种方法可以让您的 BlackBerry 应用程序从网站下载:
1. 无线分发
要允许用户通过无线方式安装应用程序,您需要有一个 Web 服务器。在 Web 服务器上,您需要两个文件:
在 Web 服务器上,您需要设置三种 MIME 类型:
但是,如果 .cod 文件大于 64KB,则必须在 Web 服务器上解压缩,否则您可能会收到“
907 invalid cod” HTTP 错误 404
”错误消息。为此,请将 .cod 重命名为 .zip,然后打开 .zip 文件,并将文件内容与 .jad 文件放在 Web 服务器上的同一文件夹中。 (请参阅:https://stackoverflow.com/a/5788124/1943)。下载应用程序的链接应该是 .jad 文件。2.使用 BlackBerry Application Web Loader
这是一个 ActiveX 插件,可方便下载应用程序。请参阅开发人员文档 了解更多相关信息。
参考:
Vivart 的链接:http://supportforums.blackberry.com/t5/Testing-and-Deployment/How-to-Deploy-and-Distribute-Applications/ta-p/442794
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:
On your web server you will need to setup three MIME types:
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