[List of issues resolved] (/jwagenleitner/groovy-wslite/issues?sort=created&direction=desc&state=closed&page=1&milestone=2)
[List of issues resolved] (/jwagenleitner/groovy-wslite/issues?sort=created&direction=desc&state=closed&page=1&milestone=1)
-
SOAPClient
-
responses now include both the HTTPRequest
response.httpRequest
and HTTPResponseresponse.httpResponse
-
response.http
was changed toresponse.httpResponse
-
response.Envelope
was changed toresponse.envelope
-
exceptions now include
httpRequest
andhttpResponse
objects. -
a
SOAPFaultException
is now being thrown anytime there is a Envelope/Body/Fault element in the response. The propertiesfaultcode/faultstring/faultactor/detail
have been removed (these only applied to SOAP 1.1 faults). Instead you can access the Fault via GPathResult usingsoapFaultException.fault
. -
RESTClient
-
response.XML -> response.xml
,response.JSON -> response.json
,response.TEXT -> response.text
-
exceptions now include request/response objects (if available)
-
Common
-
trustAllSSLCerts
connection parameter renamed tosslTrustAllCerts
-
New connection parameters
sslTrustStoreFile
andsslTrustStorePassword
enable trusting SSL connection based on a custom trust store file (see SSL section of README) -
Requests no longer default to trusting all SSL certs. You must set
sslTrustAllCerts
(see SSL section of README)
- Initial release