HttpClient http = new HttpClient(conStr);
http.setTimeout(timeout * 1000);
http.setAllowUntrusted(true);
String response = null;
try {
response = http.post(xmlString);
} catch (HttpClientException e) {
Debug.logError(e, "Problem connecting with UPS server [" + conStr + "]", module);
throw new UpsConnectException(UtilProperties.getMessage(resourceError, "FacilityShipmentUpsURLConnectionProblem",
UtilMisc.toMap("exception", e), locale));
}