groovy-wslite
groovy-wslite copied to clipboard
Lightweight SOAP and REST webservice clients for Groovy
Hello there. First of all, we would like to say that we love this library, and we are using it a lot, so many thanks! Now, the issue we are...
I discovered that if I make a request to a server that returns an Internal Server Error (code 500), ws-lite throws an HTTPClientException. That's unexpected to me, because I would...
Library version 1.1.2 When using the DELETE method on a URL, I found that the HttpClient failed with the above exception. ``` Caused by: java.net.ProtocolException: HTTP method DELETE doesn't support...
Hi, like the client. Wondering if there is any way to send a JSON payload, and get back a `application/octet-stream`? I'm getting a response parse error: `wslite.rest.RESTContentParseException: A JSONObject text...
Is there any way to make groovy-wslite attempt an automatic authentication attempt if a request returned UNAUTHORIZED or FORBIDDEN? I'm thinking about logic like: ``` resp = doRequest() if (resp.UNAUTHORIZED...
Hi, Would you be willing to accept a PR for trace logging HTTP requests and responses? I was thinking something along the lines of an optional constructor parameter for an...
Hi, So here's the scenario - I work as part of a team of developers, 3 mac users, and 2 linux users. We're using RESTClient to POST to an URL...
HTTPClient tries to use the system proxy if one isn't explicitly set. It does this by honoring the `http.proxyHost` and `http.proxyPort` system properties to construct a proxy. It does _not_...
Possible fix for #100.
SOAP allows for 'detail' which can include important information, but SOAPFaultException does not include it in the message. I propose two changes: 1. Include the detail in the exception message...