httpbuilder
httpbuilder copied to clipboard
AFAIK there's no mention in the docs of whether instances of `HTTPBuilder`, `RESTClient`, etc. are thread-safe. A quick look at the code suggests they are not, but it should be...
Using groovy 2.3.7 I get the following error when parsing an xml file with a DOCTYPE DOCTYPE is disallowed when the feature "http://apache.org/xml/features/disallow-doctype-decl" set to true Is there a way...
Documented at http://groovy.329449.n5.nabble.com/HTTPBuilder-performance-issues-td5714593.html
jgritman/httpbuilder#37 Modified the AuthConfig class so the certificate() method is overloaded with three different options: - `certificate(String path, String pass)` behaves as the original method, using the system default keystore...
The `AuthConfig.certificate()` method only supports the system default Keystore type (typically 'jks'). That method should accept an optional parameter specifying a keystore type (e.g. 'PKCS12'), falling back to Keystore.getDefaultType() if...
I'd like to see groovy's [closure param definitions](http://melix.github.io/blog/2014/01/closure_param_inference.html) added. It would make working within an IDE easier. I would start plowing away on a pull request, but this required groovy...
Throws exception: java.lang.IllegalArgumentException: Don't know how to encode [Ljava.lang.Byte;@165d86f1 as a byte stream The problem is using Byte[] instead of byte[] https://github.com/jgritman/httpbuilder/blob/master/src/main/java/groovyx/net/http/EncoderRegistry.java#L130
PUT and POST fail with groovy.lang.MissingMethodException if requestContentType is other than URLENC. Sample stacktrace when requestContentType set to XML: groovy.lang.MissingMethodException: No signature of method: groovyx.net.http.EncoderRegistry.encodeXML() is applicable for argument types:...
When using HTTPBuilder with grails-rest-plugin on a platform with default encoding set to US-ASCII we realized that by default HTTPBuilder will use the platform's default encoding to encode request bodies...