You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jo...@apache.org on 2007/04/17 07:49:04 UTC

svn commit: r529492 - /ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/HttpClient.java

Author: jonesde
Date: Mon Apr 16 22:49:04 2007
New Revision: 529492

URL: http://svn.apache.org/viewvc?view=rev&rev=529492
Log:
Fixed compile error; I think related to some stuff Andrew Zeneski was working on, so will do this for now and let him review it

Modified:
    ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/HttpClient.java

Modified: ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/HttpClient.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/HttpClient.java?view=diff&rev=529492&r1=529491&r2=529492
==============================================================================
--- ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/HttpClient.java (original)
+++ ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/HttpClient.java Mon Apr 16 22:49:04 2007
@@ -356,7 +356,7 @@
         // Create the URL and open the connection.
         try {
             requestUrl = new URL(url);
-            con = URLConnector.openConnection(requestUrl, timeout, clientCertAlias);
+            con = URLConnector.openConnection(requestUrl, timeout, clientCertAlias, 0);
             if (Debug.verboseOn() || debug) Debug.log("Connection opened to : " + requestUrl.toExternalForm(), module);
 
             if ((con instanceof HttpURLConnection)) {