sha09
9 years agoOccasional Contributor
IOException: Decompression of response failed
Hello,
I am trying to do some test using TestNG and test case runner
TestCaseRunner testCaseRunner = testCase.run(new PropertiesMap(), false); for (TestStepResult testStepResult : testCaseRunner.getResults()) { if(testStepResult instanceof MessageExchange){ String responseXML = ((MessageExchange) testStepResult).getResponseContentAsXml(); } }
When I was run a simple test project it works.
Now I am trying to test some little-big project with few test-suites then I am getting this error:
java.io.IOException: Decompression of response failed at
com.eviware.soapui.impl.wsdl.submit.transports.http.HttpMethodSupport.getResponseBody(HttpMethodSupport.java:321)
Can anybody please suggest what I am missing here or may be doing wrong?
Thank you!
got it solved by removing the unneceserray http maven dependency.