httpbuilder icon indicating copy to clipboard operation
httpbuilder copied to clipboard

Results 55 httpbuilder issues
Sort by recently updated
recently updated
newest added

[![mitm_build](https://user-images.githubusercontent.com/1323708/59226671-90645200-8ba1-11e9-8ab3-39292bef99e9.jpeg)](https://medium.com/@jonathan.leitschuh/want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-1fc329d898fb?source=friends_link&sk=3c99970c55a899ad9ef41f126efcde0e) - [Want to take over the Java ecosystem? All you need is a MITM!](https://medium.com/@jonathan.leitschuh/want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-1fc329d898fb?source=friends_link&sk=3c99970c55a899ad9ef41f126efcde0e) - [Update: Want to take over the Java ecosystem? All you need is a MITM!](https://medium.com/bugbountywriteup/update-want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-d069d253fe23?source=friends_link&sk=8c8e52a7d57b98d0b7e541665688b454)...

Hi all, I want to make a POST with URL encoded params and I have followed the [guide](https://github.com/jgritman/httpbuilder/wiki/POST-Examples), but it doesnt work. Executed it from cURL it works as expeted,...

I'm trying to get an application that is using Java 1.7 + httpbuilder to honor the ideas here: https://blogs.oracle.com/java-platform-group/entry/diagnosing_tls_ssl_and_https It seems that https.protocols is not inspected by httpclient, or at...

I cannot find a way to encode a forward-slash (`/`) into a `path` in HTTPBuilder (as `%2F`). Example: ```groovy def http = new HTTPBuilder('https://gitlab.com/api/v3/') http.setHeaders ['PRIVATE-TOKEN': API_TOKEN] http.get(path: 'projects/group-name%2Fproject-name') {...

In Java8: ``` URIBuilder uri = new URIBuilder("http://www.google.com/one/two?a=1#frag"); Assert.assertEquals(80, uri.getPort()); ``` Produces: > java.lang.AssertionError: expected: but was: Am I missing something?

I'm testing AsyncHTTPBuilder doing POST of requests with XML body. When the server responds with 400, I get an exception on the client side, but instead of getting groovyx.net.http.HttpResponseException, I'm...

I'm trying to test a REST API parallelizing some tasks using GPars. I have one connection to the server and tried something like: withPool(5) { (1..amount).eachParallel { println it def...

Are there any plans to port this to use a newer version of httpclient?

It would be great to have support for request body in DELETE request out of the box. (Instead of overriding methods as suggested in #44 ) Since there is no...

I see the below exception when I submit my request: groovyx.net.http.ResponseParseException: OK Request: def response = new RestClient().post([ "http://endpoint/path", contentType: ContentType.JSON, body: {"s":a, "b":"af"} ]) Groovy version: 2.3.10 HttpBuilder version...