休息-泽西+ BlazeDS +Flex 集成
我正在尝试集成 Flex 应用程序以通过 BlazeDS 访问 Rest 服务(使用 Jersey)。我能够让 Rest + Jersey 工作(我想非常简单)并且我能够配置 Flex + BlazeDS。我正在寻求帮助,以根据指定的注释(例如我的休息服务类中的 @Path)从 Flex UI 调用休息服务(不同的方法)。
有人可以提供一些指示/示例来配置 Flex -BlazeDS 来调用其余服务吗?
谢谢,
RJ
I am trying to integrate Flex application to access Rest services (using Jersey) through BlazeDS. I'm able to get Rest + Jersey working (pretty straight forward I guess) and I was able to configure Flex + BlazeDS. I'm looking for help to invoke rest services (different methods) from Flex UI based on the annotations specified such as @Path in my rest service class.
Can someone provide some pointers/examples to configure Flex -BlazeDS to invoke the rest services?
Thanks,
RJ
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,如果您使用 BlazeDS 并且仅拥有 Flex 客户端,则应该设置 BlazeDS 远程对象而不是 REST 服务。您可以使用 amf 通道并发送对象而不是 xml/json/text。
话虽这么说,您使用的是哪个版本的 Flex?我只在 Flex 4(和 actionscript 3)中使用 URLRequest 和 URLLoader(或使用 HTTPRequest)完成了此操作
例子:
<代码>
<代码>
使用 Flex 创建 REST 客户端是否可行?< /a> 这个主题已经在这里讨论过,并提供了一些很好的建议,我认为你应该检查一下。
希望这可以帮助您/为您指明正确的方向。
First off if you're using BlazeDS and only going to have Flex clients, you should setup BlazeDS remote objects instead of REST service. You can use amf channels and send objects instead of xml/json/text.
That being said, What version of flex are you using? I have only done this with Flex 4 (and actionscript 3) using URLRequest and URLLoader (or with HTTPRequest)
Example:
Is it feasible to create a REST client with Flex? this topic has been discussed here with some good pointers and I think you should check it out.
Hopefully this can help you out some / point you in the right direction.