更多>
最新下载
24小时阅读排行榜
- 1 php怎么调试接口接口文档_php接口文档编写与接口调试对应方法
- 2 系统重装后驱动安装顺序指南
- 3 Golang如何构建简单的库存统计项目
- 4 双系统安装教程_Windows+Linux共存配置
- 5 Python入门如何安装第三方库_Python入门包管理的必备技能
- 6 如何在mysql中设计商品评价系统
- 7 三星S26系列传闻大乱斗:相机升级成谜 电池暗藏惊喜
- 8 圆通快递查询入口首页 圆通物流包裹运输进度查询
- 9 百度AI官方主页直达地址_百度AI官网链接入口最新版本
- 10 夸克A眼镜怎么开机_夸克A眼镜开机步骤与注意事项详细说明
- 11 jquery中如何使用val()方法取值?
- 12 如何清理vivo云服务空间 怎么清理vivo云服务的空间
- 13 如何编辑网页HTML中的网格系统_如何编辑网页HTML中使用Bootstrap网格系统的方法
- 14 笔记本电脑电池保养秘籍
- 15 如何在Linux服务器上设置一个自动抓取RSS的Cron Job_在Linux服务器设置自动抓取RSS的Cron Job
更多>
最新教程
-
- Node.js 教程
- 7779 2025-08-28
-
- CSS3 教程
- 1079723 2025-08-27
-
- Rust 教程
- 12290 2025-08-27
-
- Vue 教程
- 14481 2025-08-22
-
- PostgreSQL 教程
- 11158 2025-08-21
-
- Git 教程
- 5249 2025-08-21
下载首页 / 学习资料 / 网页制作
RPC-Style Architectures
An RPC-style web service accepts an envelope full of data from its client, and sends a
similar envelope back. The method and the scoping information are kept inside the
envelope, or on stickers applied to the envelope. What kind of envelope is not important
to my classification, but HTTP is a popular envelope format, since any web service
worthy of the name must use HTTP anyway. SOAP is another popular envelope format
(transmitting a SOAP document over HTTP puts the SOAP envelope inside an HTTP
envelope). Every RPC-style service defines a brand new vocabulary. Computer pro-
grams work this way as well: every time you write a program, you define functions with
different names. By contrast, all RESTful web services share a standard vocabulary of
HTTP methods. Every object in a RESTful service responds to the same basic interface.
The XML-RPC protocol for web services is the most obvious example of the RPC ar-
chitecture. XML-RPC is mostly a legacy protocol these days, but I’m going to start off
with it because it’s relatively simple and easy to explain. Example 1-11 shows a Ruby
client for an XML-RPC service that lets you look up anything with a Universal Product
An RPC-style web service accepts an envelope full of data from its client, and sends a
similar envelope back. The method and the scoping information are kept inside the
envelope, or on stickers applied to the envelope. What kind of envelope is not important
to my classification, but HTTP is a popular envelope format, since any web service
worthy of the name must use HTTP anyway. SOAP is another popular envelope format
(transmitting a SOAP document over HTTP puts the SOAP envelope inside an HTTP
envelope). Every RPC-style service defines a brand new vocabulary. Computer pro-
grams work this way as well: every time you write a program, you define functions with
different names. By contrast, all RESTful web services share a standard vocabulary of
HTTP methods. Every object in a RESTful service responds to the same basic interface.
The XML-RPC protocol for web services is the most obvious example of the RPC ar-
chitecture. XML-RPC is mostly a legacy protocol these days, but I’m going to start off
with it because it’s relatively simple and easy to explain. Example 1-11 shows a Ruby
client for an XML-RPC service that lets you look up anything with a Universal Product
本站所有资源都是由网友投搞发布,或转载各大下载站,请自行检测软件的完整性!本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!如有侵权请联系我们删除下架,联系方式:admin@php.cn

