IOException: Decompression of response failed
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2016
04:47 AM
09-19-2016
04:47 AM
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!
Solved! Go to Solution.
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2016
02:18 AM
09-20-2016
02:18 AM
got it solved by removing the unneceserray http maven dependency.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2018
02:47 AM
11-12-2018
02:47 AM
Hi,
Can you please let me know how maven dependency is removed
