Author: jleroux
Date: Mon Apr 4 14:49:44 2016
New Revision: 1737695
URL:
http://svn.apache.org/viewvc?rev=1737695&view=revLog:
For "Replace OFBiz HttpClient by org.apache.commons.httpclient.HttpClient" -
https://issues.apache.org/jira/browse/OFBIZ-4430Since commons.httpclient.HttpClient is now deprecated/not-maintained an vulnerable I prefer to simply put a warning at the top of the class. So people can pick what they prefer and is handy for their problem at than
Modified:
ofbiz/trunk/framework/base/src/org/ofbiz/base/util/HttpClient.java
Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/HttpClient.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/HttpClient.java?rev=1737695&r1=1737694&r2=1737695&view=diff==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/HttpClient.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/HttpClient.java Mon Apr 4 14:49:44 2016
@@ -33,6 +33,7 @@ import java.util.Map;
/**
* Send HTTP GET/POST requests.
+ * The main problem with current implementation is that it does not handle connections release. You must rely on the SO to release them (timeout).
*
*/
public class HttpClient {