From JMeter, I am trying to get a URL . (http://Uniform_resource_locator:port_0000/abc/def/ghi/content/login.html )
When I create an HTTP request and do a GET on that, I get the following error.
java.net.URISyntaxException: Expected closing bracket for IPv6 address at index 26: http://[URL as mentioned above]/
at java.net.URI$Parser.fail(Unknown Source)
at java.net.URI$Parser.failExpecting(Unknown Source)
at java.net.URI$Parser.parseServer(Unknown Source)
at java.net.URI$Parser.parseAuthority(Unknown Source)
at java.net.URI$Parser.parseHierarchical(Unknown Source)
at java.net.URI$Parser.parse(Unknown Source)
at java.net.URI.<init>(Unknown Source)
at java.net.URL.toURI(Unknown Source)
at org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl.sample(HTTPHC4Impl.java:331)
- I have removed http:// from the server
- This is just a GET request.
- This is running on a VPN Network (JMeter is also on that machine)
- Opens manually.
Any ideas where I went wrong .