[jboss-svn-commits] JBL Code SVN: r37500 - labs/jbossesb/branches/JBESB_4_10_CP/product/rosetta/src/org/jboss/internal/soa/esb/webservice.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Oct 3 16:08:37 EDT 2011


Author: tcunning
Date: 2011-10-03 16:08:36 -0400 (Mon, 03 Oct 2011)
New Revision: 37500

Modified:
   labs/jbossesb/branches/JBESB_4_10_CP/product/rosetta/src/org/jboss/internal/soa/esb/webservice/ESBContractGenerator.java
Log:
JBESB-3691
Set the SOAP action URI to the request URI, not the response URI.


Modified: labs/jbossesb/branches/JBESB_4_10_CP/product/rosetta/src/org/jboss/internal/soa/esb/webservice/ESBContractGenerator.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_10_CP/product/rosetta/src/org/jboss/internal/soa/esb/webservice/ESBContractGenerator.java	2011-10-03 15:36:06 UTC (rev 37499)
+++ labs/jbossesb/branches/JBESB_4_10_CP/product/rosetta/src/org/jboss/internal/soa/esb/webservice/ESBContractGenerator.java	2011-10-03 20:08:36 UTC (rev 37500)
@@ -388,7 +388,7 @@
 		Operation op = (Operation) portType.getOperations().get(0);
 		bop.setOperation(op);
 		SOAPOperation soapOperation = new SOAPOperationImpl() ;
-		soapOperation.setSoapActionURI(serviceInfo.getResponseAction()) ;
+		soapOperation.setSoapActionURI(serviceInfo.getRequestAction()) ;
 		bop.addExtensibilityElement(soapOperation) ;
 		
 		if (op.getInput() != null) {



More information about the jboss-svn-commits mailing list