Closed GoogleCodeExporter closed 9 years ago
This is still a problem in 3.1.1. It's caused by not calling
connection.disconnect() in the httpTransportSE.call code.
The hack that worked for me was adding in a header property of "Connection :
close".
ArrayList<HeaderProperty> headerPropertyArrayList = new
ArrayList<HeaderProperty>();
headerPropertyArrayList.add(new HeaderProperty("Connection", "close"));
And updating your call with ".call(SOAP_ACTION, envelope,
headerPropertyArrayList)"
Original comment by islandma...@gmail.com
on 29 Jan 2014 at 8:51
Could you provide a pull request that fixes it in master
Original comment by mosa...@gmail.com
on 29 Jan 2014 at 9:19
Original issue reported on code.google.com by
shixianm...@gmail.com
on 17 Oct 2013 at 2:45