HttpClient http = new HttpClient("http://ofbiz.apache.org/cgi-bin/http_test.pl");
http.setHeader("Cookie", "name=value,value=name");
http.setHeader("User-Agent", "Mozilla/4.0");
http.setParameter("testId", "testing");
Debug.log(http.post(), module);
} catch (Exception e) {
Debug.log(e, "HttpClientException Caught.", module);
}
return "success";
}