黑莓和 RESTful 服务
我正在寻求开发一个黑莓应用程序来使用 RESTful 服务。目前,我们计划开发一个 REST 层,用于在后端数据库上执行搜索并将结果作为 JSON 返回。
我使用 Jersey 框架( http://jersey.java.net/ )来消费(和开发)过去的 REST 层。
这是我们第一次计划为黑莓开发这样的应用程序。通过环顾四周,我不确定黑莓是否支持球衣来使用 RESTful 服务。
所以我想知道有人可以提供一些在 Blackberry 上使用 RESTful 服务的建议(关于球衣或任何其他专用 JAR)吗?否则,我们将不得不从头开始构建使用 RESTFul 服务的代码。或者甚至使用 SOAP,如果可能的话,我宁愿不必这样做。
谢谢, 约翰
I'm looking to develop a blackberry application to consume a RESTful service. At the moment we plan to develop a REST layer which we will use to perform searches on a back end database and return the results as JSON.
I have used the Jersey framework ( http://jersey.java.net/ ) for consuming (and developing) REST layers in the past.
This is the first time we plan to develop such an app for a blackberry. From looking around I'm not sure if jersey is supported on the blackberry for consuming RESTful services.
So I'm wondering could someone offer some advice (on jersey or any other purpose built JARs) for using RESTful services on Blackberry? Otherwise we will have to build from scratch the code for consuming the RESTFul service. Or even use SOAP which I prefer not to have to do if possible.
Thanks,
John
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 JSON.org 网站,他们有 Java 中的 lib 来解析 JSON 数据(我设法使它无需太多修改即可用于 BlackBerry,
只需将所需的参数传递给 Web 服务即可,然后使用 JSON 库解析响应以在本机客户端中重建数据模型
。请不要将 SOAP 用于移动应用程序,
请阅读 RIM doc 对于套接字
您可以使用 httpConnection 也是如此
Take a look at the JSON.org website, they have lib in Java to parse JSON data(I'v manage to make it work for BlackBerry without to much modifications.
The only thing left to do is a connection to the web service by passing the parameter you need to it. And then parse the response with the JSON lib to rebuild your data model in your native client.
And please don't use SOAP for mobile application.
Please read RIM doc for socket
You can use a httpConnection too