HttpOp.applyAuthentication((AbstractHttpClient) client, serviceURL, context, authenticator);
this.client = new DecompressingHttpClient(client);
}
// Get the actual response stream
TypedInputStream stream = HttpOp.execHttpPostFormStream(serviceURL, this, contentTypeResult, client, context, authenticator);
if (stream == null)
throw new QueryExceptionHTTP(404);
return execCommon(stream);
} catch (HttpException httpEx) {
throw rewrap(httpEx);