// execute request.
HttpResponse httpResponse = client.execute(request);
if (httpWebServiceProcessors != null) {
HttpResponseWrapper httpResponseWrapper = new ApacheHttpResponseWrapper(httpResponse);
for (HttpWebServiceProcessor each : httpWebServiceProcessors) {
each.afterExecute(this, httpResponseWrapper);
}
}