}
try {
HttpClient httpClient = new HttpClient(url, request);
String certificateAlias = props.getProperty("certificateAlias");
httpClient.setClientCertificateAlias(certificateAlias);
String httpResponse = httpClient.post();
Debug.logInfo("transaction response: " + httpResponse,module);
AuthorizeResponse ar = new AuthorizeResponse(httpResponse);
String resp = ar.getResponseCode();
if (resp.equals(AuthorizeResponse.APPROVED)) {
result.put("authResult", Boolean.TRUE);