0

我有一个非常简单的 jmeter 项目。我只是向我的 webservice wsdl 文件发送一个HTTP GET 请求,以验证一切是否正常。但是,myinternal.server.local/ws/calc webservice 请求和对 myinternal.server.local/ws/calc?wsdl 的 HTTP GET 都失败,并出现以下异常;

Non HTTP response code: org.apache.http.conn.HttpHostConnectException
Non HTTP response message: Connection to https://myinternal.server.local

我确信 web 服务可以工作,因为我可以通过 SOAP UI 调用它,并且 IE 在调用https://myinternal.server.local/ws/calc?wsdl时显示 wsdl 。

HTTP 请求返回

    org.apache.http.conn.HttpHostConnectException: Connection to https://myinternal.server.local refused
at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:190)
at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:294)
at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:645)
at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:480)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:805)
at org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl.sample(HTTPHC4Impl.java:286)
at org.apache.jmeter.protocol.http.sampler.HTTPSamplerProxy.sample(HTTPSamplerProxy.java:62)
at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:1088)
at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:1077)
at org.apache.jmeter.threads.JMeterThread.process_sampler(JMeterThread.java:428)
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:256)
at java.lang.Thread.run(Thread.java:722)
Caused by: java.net.ConnectException: connect: Connection timed out

When SOAP/XML-RPC Request is selected then it returns

Caused by: java.net.ConnectException: connect: Connection timed out

我在 JDK 1.8.0_20(64 位)和 jmeter 2.11 @64 位 Windows-7

你能想到根本原因是什么吗?

问候,

4

2 回答 2

1

请按照以下步骤操作:

  1. 使用“模板
  2. 选择“构建 SOAP WebService 测试计划”并单击“创建”按钮。
  3. 然后编辑值以指向您自己的 wsdl,并根据需要修复请求 xml。

对于 https,您可能需要在 HTTP 请求默认值中指定端口 443,但我发现 SOAP/RPC 采样器在不使用默认元素的情况下处理 https。
只需在采样器中指定整个 URL。如果该端口不是协议的默认端口,您可以在 URL 中包含该端口。

于 2014-10-09T02:49:10.063 回答
0

甚至不看你的问题的细节,我会用 Java 6 或 7 再试一次。我的测试在 JDK 1.7 上运行良好,但在 1.8 上失败了。

于 2014-10-03T12:02:06.323 回答