
Web Api
文章平均质量分 87
iteye_16314
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
WebApi相关定义
WebApi: 采用Rest架构,http协议,数据格式是Json 或 XML,是面向资源的。Web Service: 采用的是Soap协议,数据格式是XML,是面向功能的 Http: 超文本传输协议,信息是明文传输的,端口是80Https: SSL+Http协议构建的,可进行加密传输,身份认证的网络传输协议,端口是443 Swaager: Restful接口的文档...2016-10-10 09:45:30 · 256 阅读 · 0 评论 -
Restful Web APIs简介
Restful Web APIs: 概念: 资源:我们所说的URL是一些事物的URL, 比如一个产品,用户或主页。这些通过URL命名的事物叫资源。 资源的表述:web浏览器为一个资源发送http请求后,服务器会发送一个文档作为响应(通常是一个HTML文档,但有时候是二进制图片或其它东西)。无论服务器发送了什么文档,我们都将这个文档称为资源的表述。 可寻址性: 每个资源应该有一个属于...原创 2016-10-10 12:13:54 · 344 阅读 · 0 评论 -
Web Service Load Test Strategies
OverviewThis document provides information on various ways to perform web service load test. Also, provides information on each type of load test goals.Test Case SelectionIn order to perform ...原创 2016-10-10 12:38:07 · 135 阅读 · 0 评论 -
Web Service Test Automation Standards
ToolsSoapUI Pro and/or open source (http://www.soapui.org/) for development/or RFSJenkins to run SoapUI/RF tests Test GoalCover all URL endpoints for Health Test and Bad RequestCover ...原创 2016-10-10 12:38:32 · 129 阅读 · 0 评论 -
SoapUI Load Test Result Interpretation
Overview:This document provides information on how to interpret basic load test result charts generated by SoapUIReport Breakdown:Load test report is broken into following sections -Result S...原创 2016-10-10 12:51:27 · 241 阅读 · 0 评论 -
Designing a RESTful API with Python and Flask
文档: http://blog.miguelgrinberg.com/post/designing-a-restful-api-with-python-and-flask快速入门: http://www.pythondoc.com/flask/quickstart.html Python以及Flask的安装: http://blog.youkuaiyun.com/qwiwuqo/article/d...原创 2016-10-18 14:01:52 · 166 阅读 · 0 评论