如何将JMeter与摘要式身份验证一起使用?

时间:2011-08-01 20:45:24

标签: authentication jmeter digest-authentication

我正在尝试使用JMeter来测试Web应用程序,但是没有关于如何将其设置为使用摘要式身份验证的文档。我已经尝试使用代理服务器来记录身份验证,但请求中没有我在UI中可以看到的信息,并且回放不起作用。似乎JMeter的默认设置是基本身份验证,但我听说过可以使用摘要的提示。一个简单的例子就是很棒。

3 个答案:

答案 0 :(得分:2)

JMeter支持使用Authorization Manager和httpclient进行DIGEST身份验证 使用HTTP 3.1:

在jmeter.Properties中,取消注释:

httpclient.parameters.file = bin文件夹/ httpclient.parameters的完整路径

在httpclient.parameters中,取消注释:

http.authentication.preemptive $布尔=真

使用HTTP客户端4:

hc.parameters.file = bin文件夹/ hc.parameters的完整路径

在hc.parameters中,取消注释:

http.authentication.preemptive $布尔=真

答案 1 :(得分:0)

您是否尝试过the online manual

答案 2 :(得分:0)

我使用带有摘要式身份验证的JMeter(3.0版)来使用RESTful API(受Spring Digest Authentication保护)

我将JMeter配置如下。它对我来说非常有效。供参考:

enter image description here

enter image description here

enter image description here

(同时检查the JMeter doc on HTTP Authentication Manager