[jboss-remoting-commits] JBoss Remoting SVN: r4168 - remoting2/branches/2.x/src/main/org/jboss/remoting/transport/http.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Sat May 10 23:17:56 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-05-10 23:17:56 -0400 (Sat, 10 May 2008)
New Revision: 4168

Modified:
   remoting2/branches/2.x/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java
Log:
JBREM-979: Removed retry facility for jdk 1.4.

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java	2008-05-10 21:59:53 UTC (rev 4167)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java	2008-05-11 03:17:56 UTC (rev 4168)
@@ -162,7 +162,7 @@
             {
                try
                {
-                  resultHolder.value = makeInvocation(conn, validatedUrl, invocation, finalMetadata, marshaller, unmarshaller, false);
+                  resultHolder.value = useHttpURLConnection(conn, invocation, finalMetadata, marshaller, unmarshaller);
                   if (log.isTraceEnabled()) log.trace("result: " + resultHolder.value);
                }
                catch (Exception e)
@@ -217,7 +217,7 @@
       {
          try
          {
-            Object o =  useHttpURLConnection(conn, invocation, metadata, marshaller, unmarshaller);
+            Object o = useHttpURLConnection(conn, invocation, metadata, marshaller, unmarshaller);
             if (log.isTraceEnabled()) log.trace("result: " + o);
             return o;
          }




More information about the jboss-remoting-commits mailing list