Author: ron.sigal(a)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;
}