Author: jochen
Date: Sat Nov  4 14:39:00 2006
New Revision: 471284

URL: http://svn.apache.org/viewvc?view=rev&rev=471284
Log:
The configuration of the reply timeout in the commons transport was wrong.
PR: XMLRPC-120
Submitted-by: Juho Yli-Krekola, [EMAIL PROTECTED]


Modified:
    
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java
    webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/pom.xml
    webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml

Modified: 
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java
URL: 
http://svn.apache.org/viewvc/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java?view=diff&rev=471284&r1=471283&r2=471284
==============================================================================
--- 
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java
 (original)
+++ 
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java
 Sat Nov  4 14:39:00 2006
@@ -74,7 +74,7 @@
             
client.getHttpConnectionManager().getParams().setConnectionTimeout(config.getConnectionTimeout());
         
         if (config.getReplyTimeout() != 0)
-            
client.getHttpConnectionManager().getParams().setSoTimeout(config.getConnectionTimeout());
+            
client.getHttpConnectionManager().getParams().setSoTimeout(config.getReplyTimeout());
         
         method.getParams().setVersion(HttpVersion.HTTP_1_1);
     }

Modified: webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/pom.xml?view=diff&rev=471284&r1=471283&r2=471284
==============================================================================
--- webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/pom.xml (original)
+++ webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/pom.xml Sat Nov  4 14:39:00 
2006
@@ -176,7 +176,11 @@
         <contributor>
             <name>Ken Weiner</name>
             <email>[EMAIL PROTECTED]</email>
-        </contributor>
+        </contributor>
+        <contributor>
+            <name>Juho Yli-Krekola</name>
+            <email>[EMAIL PROTECTED]</email>
+        </contributor>
     </contributors>
     <scm>
         
<connection>scm:svn:scm:svn:https://svn.apache.org/repos/asf/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH</connection>

Modified: webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml?view=diff&rev=471284&r1=471283&r2=471284
==============================================================================
--- webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml 
(original)
+++ webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml Sat 
Nov  4 14:39:00 2006
@@ -8,7 +8,7 @@
         Make the HttpClient creation in XmlRpcCommonsTransport and the
         URLConnection creation in XmlRpcSunHttpTransport protected.
         This is required for cookie support.
-      </action
+      </action>
       <action dev="jochen" type="fix">
         The WebServer was producing invalid error responses, if 
contentLengthOptional
         was set.
@@ -40,6 +40,10 @@
                Fixed a serious performance problem, if the XML parser was 
sending large
                content in small pieces. This could happen, for example, if the 
content
                contained a large number of character entities.
+      </action>
+      <action dev="jochen" type="fix" issue="XMLRPC-120"
+          due-to="Juho Yli-Krekola" due-to-email="[EMAIL PROTECTED]">
+        The configuration of the reply timeout in the commons transport was 
wrong.
       </action>
     </release>
     <release version="3.0" date="30-Aug-2006">


Reply via email to