groovy-wslite icon indicating copy to clipboard operation
groovy-wslite copied to clipboard

Lightweight SOAP and REST webservice clients for Groovy

Results 42 groovy-wslite issues
Sort by recently updated
recently updated
newest added

groovy.util.slurpersupport.GPathResult and groovy.util.XmlSlurper is deprecated from groovy 3.x. Is there plan for wslite to use the groovy.xml.slurpersupport.GPathResult and groovy.xml.XmlSlurper? How about wslite 2.0? Any news for this new version?

During development I've noticed that when SOAP responses are huge (like listings etc) client cuts-off randomly part of the body. In my situation i was around 17000'th symbol Version 1.1.3

How to dump request XML content?

The getAcceptedIssuers closure for trustingTrustManager in HTTPConnectionFactory.getConnectionTrustAllSSLCerts returns null in violation of the Java specification for X509TrustManager.getAcceptedIssuers (https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/X509TrustManager.html#getAcceptedIssuers--) which defines the return value to be a non-null (possibly empty) array....

When executing a REST operation with a wrong hostname, RESTClientException only delivers the hostname, whithout giving any hint as to what's wrong with that host, for example: ``` try {...

Hi, this is a great library, thanks so much! Just wondering what is holding you back from releasing version 2? (I would like to avoid using a snapshot version in...

The actual connection timeout exceeds specified value twice. Groovy test code is here: [TestConnTimeout.zip](https://github.com/jwagenleitner/groovy-wslite/files/779731/TestConnTimeout.zip) Results: $ groovy TestConnTimeout.groovy Started request to http://www.google.com:81 Error: wslite.soap.SOAPClientException: connect timed out Declared timeout: 2000...

I have called PATCH method, but wslite executed POST method. Is it bug or feature? Thanks. Response patch(Map params=[:], Closure content=null) { Map newParams = new LinkedHashMap(params ?: [:]) if...

I need to build a request without xml declaration. Using example code from main wslite page, I got SOAP request body: ``` POST /Holidays/US/Dates/USHolidayDates.asmx HTTP/1.1 Content-Type: text/xml; charset=UTF-8 SOAPAction: http://www.27seconds.com/Holidays/US/Dates/GetMothersDay...