摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
常见的http重定向请求包括http code为301和302的两种重定向请求,代表某个url地址发生了转移。 301代表永久性转移; 302代表暂时性转移; 阅读全文
摘要:
set request body关键字——用来设置http请求时的body信息 ,尤其是在post请求时经常用到这个关键字。 该关键字接收一个[ body ]参数。 set request body 此处为body信息 阅读全文
摘要:
set request header关键字——用来设置http请求时的请求头部信息; 该关键字需要接收2个参数,分别是[ header_name | header_value ] 示例:打开百度首页,首页来源于hao123网址: set request header referer https:// 阅读全文
摘要:
虽然http的response header类型众多,但是并不是所有的请求都会返回每一种response header类型。 示例:百度搜索soapui create http context www.baidu.com scheme=https get /s?tn=50000021_hao_pg& 阅读全文
摘要:
get response status关键字——获取http请求返回的状态码。 示例:获取百度搜索soapui返回的http状态码 create http context www.baidu.com/ scheme=https get /s?wd=soapui&pn=10&oq=soapui&tn= 阅读全文
摘要:
服务端在完成处理发出http请求后,会给出对应的响应结果,这时get response body关键字可以用来获取响应结果中的主体内容。 一般在get请求或者post请求发出后,使用该关键字。 示例:访问百度首页,搜索soapui,使用get response body关键字获取响应结果中的主体内容 阅读全文