[jbossws-commits] JBossWS SVN: r16190 - legacy/branches/jbossws-1.2.1.GA_CP01_JBPAPP-8570/jbossws-core/src/java/org/jboss/ws/core/client.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Thu Apr 19 23:56:19 EDT 2012


Author: klape
Date: 2012-04-19 23:56:19 -0400 (Thu, 19 Apr 2012)
New Revision: 16190

Modified:
   legacy/branches/jbossws-1.2.1.GA_CP01_JBPAPP-8570/jbossws-core/src/java/org/jboss/ws/core/client/RemotingConnectionImpl.java
Log:
[JBPAPP-8570] Removing extra parameter datatype=JBossWSMessage from request URLs

Modified: legacy/branches/jbossws-1.2.1.GA_CP01_JBPAPP-8570/jbossws-core/src/java/org/jboss/ws/core/client/RemotingConnectionImpl.java
===================================================================
--- legacy/branches/jbossws-1.2.1.GA_CP01_JBPAPP-8570/jbossws-core/src/java/org/jboss/ws/core/client/RemotingConnectionImpl.java	2012-04-20 02:16:40 UTC (rev 16189)
+++ legacy/branches/jbossws-1.2.1.GA_CP01_JBPAPP-8570/jbossws-core/src/java/org/jboss/ws/core/client/RemotingConnectionImpl.java	2012-04-20 03:56:19 UTC (rev 16190)
@@ -209,7 +209,10 @@
       {
          // Get the invoker from Remoting for a given endpoint address
          log.debug("Get locator for: " + endpoint);
-         targetAddress = addURLParameter(targetAddress, InvokerLocator.DATATYPE, "JBossWSMessage");
+
+         //[JBPAPP-8570] This URL query param sometimes confuses endpoints
+         //targetAddress = addURLParameter(targetAddress, InvokerLocator.DATATYPE, "JBossWSMessage");
+
          InvokerLocator locator = new InvokerLocator(targetAddress);
 
          /* An HTTPClientInvoker may disconnect from the server and recreated by the remoting layer.



More information about the jbossws-commits mailing list