异步 REST Web 服务?

发布于 2024-12-22 18:09:10 字数 113 浏览 0 评论 0原文

我不得不提一下,我是 Web 服务的新手。现在,我的问题是 REST Web 服务(包括 JAX-RS)是否提供创建异步 Web 服务调用的任何方法,或者只有 SOAP 样式 Web 服务提供异步 Web 服务?

I have to mention that I am new to Web services. Now, my question is if REST web services (including JAX-RS) provide any means of creating asynchronous web service invocation, or that only SOAP style web services provide asynchronous web services?

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

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

发布评论

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

评论(1

暮年 2024-12-29 18:09:10

按照一般用法,几乎所有 RESTful 事务对于客户端都是异步的,但在服务器上是同步的。特别是,JavaScript 仅提供异步方法来进行服务器调用(AJAX、COMET 或 WebSockets);但 RESTful 方法可以从其他语言同步调用,或者通过使用浏览器导航(例如 form action="POST" 或操作 document.location 等)。

By general usage, almost all RESTful transactions are asynchronous to the client, but synchronous on the server. In particular, JavaScript only provides asynchronous methods to make server calls (AJAX, COMET, or WebSockets); but RESTful methods can be called synchronously from other languages, or by using browser navigation (e.g. form action="POST" or manipulating the document.location or so forth.)

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