Jersey - 在 POST 上使用 XML 和 HTML

发布于 2024-11-16 12:50:55 字数 283 浏览 2 评论 0原文

我想为我的 RESTful Web 服务提供灵活的身份验证方法 - 通过 HTML 表单或 XML。我意识到我可以从 HTML 表单进行 AJAX 调用,但我认为更简单的机制会很有用(尤其是在开发期间)。

如果我用 @Consumes("application/xml","application/x-www-form-urlencoded") 注释我的 SessionResource.createSession() 方法,它将接受两种类型的内容。困难的部分是区分 XML 流和 HTML。

任何指导或想法将不胜感激。

I would like to provide a flexible authentication method for my RESTful webservice - either via a HTML form or XML. I realize that I can make an AJAX call from the HTML form, but I thought a simpler mechanism would be useful (especially during development).

If I annotate my SessionResource.createSession() method with @Consumes("application/xml","application/x-www-form-urlencoded"), it will accept both types of content. The hard part is to differentiate the XML stream from the HTML.

Any guidance or thoughts would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神经暖 2024-11-23 12:50:55

为什么不执行以下操作:

@...
class SessionResource{

 @POST
 @Consumes("application/xml")
 public void createSessionFromHTML(String message){
   ...
 }

 @POST
 @Consumes("application/x-www-form-urlencoded")
 public void createSessionFromXML(String message){
   ...
 }
}

如果这不能解决您的问题,请查看 @QueryParam@HeaderParam@FormParam

概述也可能对你。

Why not do the following:

@...
class SessionResource{

 @POST
 @Consumes("application/xml")
 public void createSessionFromHTML(String message){
   ...
 }

 @POST
 @Consumes("application/x-www-form-urlencoded")
 public void createSessionFromXML(String message){
   ...
 }
}

In case this does not solve your problem please have a look at @QueryParam, @HeaderParam and @FormParam.

This overview may also be of some use to you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文