定期向网络服务器发送 GPS 的黑莓应用程序?
我想在黑莓手机上创建一个后台应用程序,该应用程序在手机启动时启动,并定期将 GPS 位置发送到网络服务器。如果没有 BES 服务器,这可能吗?我最有可能的目标是 OS 4.5。有什么我应该知道的问题吗?
谢谢 缺口
I want to create a background app on a Blackberry that starts when the phone boots and sends gps locations to a webserver periodically. Is this possible without the BES server? I am most likely targeting OS 4.5. Any gotchas I should know about?
thanks
Nick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你只想要后台进程。
如果您希望应用程序中也包含 GUI 部分,
。 如何 - 设置备用入口点
并进行 GPS 更新
获取位置信息更新
if you want only background process.
How to - Set up a background application
if you want GUI part also in your application.
How to - Set up an alternate entry point
and for gps update
Get location information updates
如果您使用 PHP 或 ASP.NET WebService,则可以跳过 BES 服务器。您可以使用此处找到的 JSON 库在 Blackberry 设备上使用该 WebService:
http://www.json.org/
PHP 和 ASP.NET 可以接收 JSON 对象并将其解析为该特定编程语言上的对象。
You can skip the BES server if you use a PHP or ASP.NET WebService. You can consume that WebService on the Blackberry device using a JSON library found here:
http://www.json.org/
PHP and ASP.NET can receive JSON objects and parse them into objects on that specific programming language.