[jboss-svn-commits] JBL Code SVN: r33703 - in labs/jbosstm/trunk/XTS: WS-C/dev/src11/com/arjuna/webservices11/wscoor/client and 7 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Jun 30 09:12:03 EDT 2010


Author: adinn
Date: 2010-06-30 09:12:01 -0400 (Wed, 30 Jun 2010)
New Revision: 33703

Modified:
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wsaddr/client/SoapFaultClient.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/client/WSCOORClient.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/sei/ActivationPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/sei/RegistrationPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsarjtx/client/WSARJTXClient.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsarjtx/sei/TerminationCoordinatorPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/client/WSATClient.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CompletionCoordinatorPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CompletionInitiatorPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CoordinatorPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/ParticipantPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/client/WSBAClient.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl.java
   labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl.java
Log:
fixed problems with CXF by basing endpoint config on SEI bean annotations rather than WSDL. also corrected FaultTo endpoint creation so it specifies the SoapFaultService and associated port for inclusion in the metadata -- fixes JBTM-749 and JBTM-753

Modified: labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wsaddr/client/SoapFaultClient.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wsaddr/client/SoapFaultClient.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wsaddr/client/SoapFaultClient.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -23,6 +23,7 @@
 import java.io.IOException;
 import java.util.Map;
 
+import javax.xml.namespace.QName;
 import javax.xml.ws.BindingProvider;
 import javax.xml.ws.soap.AddressingFeature;
 import javax.xml.ws.wsaddressing.W3CEndpointReference;
@@ -95,7 +96,11 @@
     private static synchronized SoapFaultService getSoapFaultService()
     {
         if (soapFaultService.get() == null) {
-            soapFaultService.set(new SoapFaultService());
+            // we don't supply wsdl on the client side -- we want this client to address the various
+            // different versions of the service which bind the fault WebMethod using different
+            // soap actions. the annotations on the service and port supply all the info needed
+            // to create the service and port on the client side.
+            soapFaultService.set(new SoapFaultService(null, new QName("http://jbossts.jboss.org/xts/soapfault", "SoapFaultService")));
         }
         return soapFaultService.get();
     }

Modified: labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/client/WSCOORClient.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/client/WSCOORClient.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/client/WSCOORClient.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -7,6 +7,7 @@
 import org.oasis_open.docs.ws_tx.wscoor._2006._06.RegistrationPortType;
 import org.oasis_open.docs.ws_tx.wscoor._2006._06.RegistrationService;
 
+import javax.xml.namespace.QName;
 import javax.xml.ws.BindingProvider;
 import javax.xml.ws.soap.AddressingFeature;
 import javax.xml.ws.wsaddressing.W3CEndpointReference;
@@ -39,7 +40,7 @@
     private static synchronized ActivationService getActivationService()
     {
         if (activationService.get() == null) {
-            activationService.set(new ActivationService());
+            activationService.set(new ActivationService(null, new QName("http://docs.oasis-open.org/ws-tx/wscoor/2006/06", "ActivationService")));
         }
         return activationService.get();
     }
@@ -51,7 +52,7 @@
     private static synchronized RegistrationService getRegistrationService()
     {
         if (registrationService.get() == null) {
-            registrationService.set(new RegistrationService());
+            registrationService.set(new RegistrationService(null, new QName("http://docs.oasis-open.org/ws-tx/wscoor/2006/06", "RegistrationService")));
         }
         return registrationService.get();
     }

Modified: labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/sei/ActivationPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/sei/ActivationPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/sei/ActivationPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -24,7 +24,7 @@
  * To change this template use File | Settings | File Templates.
  */
 @WebService(targetNamespace = "http://docs.oasis-open.org/ws-tx/wscoor/2006/06", name = "ActivationPortType",
-        wsdlLocation = "/WEB-INF/wsdl/wscoor-activation-binding.wsdl",
+        // wsdlLocation = "/WEB-INF/wsdl/wscoor-activation-binding.wsdl",
         serviceName = "ActivationService",
         portName = "ActivationPortType"
         // endpointInterface = "org.oasis_open.docs.ws_tx.wscoor._2006._06.ActivationPortType",
@@ -33,7 +33,7 @@
 // @EndpointConfig(configName = "Standard WSAddressing Endpoint")
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class ActivationPortTypeImpl implements ActivationPortType
+public class ActivationPortTypeImpl // implements ActivationPortType
 {
     @Resource private WebServiceContext webServiceCtx;
 
@@ -46,7 +46,7 @@
     {
         MessageContext ctx = webServiceCtx.getMessageContext();
         HttpServletRequest request = (HttpServletRequest)ctx.get(MessageContext.SERVLET_REQUEST);
-        boolean isSecure = request.getScheme().equals("https");
+        boolean isSecure = "https".equals(request.getScheme());
         MAP inboundMAP = AddressingHelper.inboundMap(ctx);
         return ActivationCoordinatorProcessor.getCoordinator().createCoordinationContext(parameters, inboundMAP, isSecure);
    }

Modified: labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/sei/RegistrationPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/sei/RegistrationPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/com/arjuna/webservices11/wscoor/sei/RegistrationPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -27,7 +27,7 @@
  */
 
 @WebService(targetNamespace = "http://docs.oasis-open.org/ws-tx/wscoor/2006/06", name = "RegistrationPortType",
-        wsdlLocation = "/WEB-INF/wsdl/wscoor-registration-binding.wsdl",
+        // wsdlLocation = "/WEB-INF/wsdl/wscoor-registration-binding.wsdl",
         serviceName = "RegistrationService",
         portName = "RegistrationPortType"
         // endpointInterface = "org.oasis_open.docs.ws_tx.wscoor._2006._06.RegistrationPortType",
@@ -36,7 +36,7 @@
 // @EndpointConfig(configName = "Standard WSAddressing Endpoint")
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class RegistrationPortTypeImpl implements RegistrationPortType
+public class RegistrationPortTypeImpl // implements RegistrationPortType
 {
     @Resource private WebServiceContext webServiceCtx;
 
@@ -50,7 +50,7 @@
     {
         MessageContext ctx = webServiceCtx.getMessageContext();
         HttpServletRequest request = (HttpServletRequest)ctx.get(MessageContext.SERVLET_REQUEST);
-        boolean isSecure = request.getScheme().equals("https");
+        boolean isSecure = "https".equals(request.getScheme());
         MAP inboundMap = AddressingHelper.inboundMap(ctx);
         final ArjunaContext arjunaContext = ArjunaContext.getCurrentContext(ctx) ;
 

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsarjtx/client/WSARJTXClient.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsarjtx/client/WSARJTXClient.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsarjtx/client/WSARJTXClient.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -10,6 +10,7 @@
 import org.jboss.wsf.common.addressing.MAP;
 import org.jboss.wsf.common.addressing.MAPBuilderFactory;
 
+import javax.xml.namespace.QName;
 import javax.xml.ws.BindingProvider;
 import javax.xml.ws.soap.AddressingFeature;
 import javax.xml.ws.wsaddressing.W3CEndpointReference;
@@ -48,7 +49,7 @@
     private static synchronized TerminationCoordinatorService getTerminationCoordinatorService()
     {
         if (terminationCoordinatorService.get() == null) {
-            terminationCoordinatorService.set(new TerminationCoordinatorService());
+            terminationCoordinatorService.set(new TerminationCoordinatorService(null, new QName("http://schemas.arjuna.com/ws/2005/10/wsarjtx", "TerminationCoordinatorService")));
         }
         return terminationCoordinatorService.get();
     }
@@ -60,7 +61,7 @@
     private static synchronized TerminationParticipantService getTerminationParticipantService()
     {
         if (terminationParticipantService.get() == null) {
-            terminationParticipantService.set(new TerminationParticipantService());
+            terminationParticipantService.set(new TerminationParticipantService(null, new QName("http://schemas.arjuna.com/ws/2005/10/wsarjtx", "TerminationParticipantService")));
         }
         return terminationParticipantService.get();
     }

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsarjtx/sei/TerminationCoordinatorPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsarjtx/sei/TerminationCoordinatorPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsarjtx/sei/TerminationCoordinatorPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -55,7 +55,7 @@
     {
         MessageContext ctx = webServiceCtx.getMessageContext();
         HttpServletRequest request = (HttpServletRequest)ctx.get(MessageContext.SERVLET_REQUEST);
-        boolean isSecure = request.getScheme().equals("https");
+        boolean isSecure = "https".equals(request.getScheme());
         final NotificationType complete = parameters;
         final MAP inboundMap = AddressingHelper.inboundMap(ctx);
         final ArjunaContext arjunaContext = ArjunaContext.getCurrentContext(ctx);

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/client/WSATClient.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/client/WSATClient.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/client/WSATClient.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -6,6 +6,7 @@
 import org.jboss.wsf.common.addressing.MAPBuilderFactory;
 import org.oasis_open.docs.ws_tx.wsat._2006._06.*;
 
+import javax.xml.namespace.QName;
 import javax.xml.ws.wsaddressing.W3CEndpointReference;
 import javax.xml.ws.BindingProvider;
 import javax.xml.ws.soap.AddressingFeature;
@@ -53,7 +54,7 @@
     private static synchronized CoordinatorService getCoordinatorService()
     {
         if (coordinatorService.get() == null) {
-            coordinatorService.set(new CoordinatorService());
+            coordinatorService.set(new CoordinatorService(null, new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "CoordinatorService")));
         }
         return coordinatorService.get();
     }
@@ -65,7 +66,7 @@
     private static synchronized ParticipantService getParticipantService()
     {
         if (participantService.get() == null) {
-            participantService.set(new ParticipantService());
+            participantService.set(new ParticipantService(null, new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "ParticipantService")));
         }
         return participantService.get();
     }
@@ -77,7 +78,7 @@
     private static synchronized CompletionCoordinatorService getCompletionCoordinatorService()
     {
         if (completionCoordinatorService.get() == null) {
-            completionCoordinatorService.set(new CompletionCoordinatorService());
+            completionCoordinatorService.set(new CompletionCoordinatorService(null, new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "CompletionCoordinatorService")));
         }
         return completionCoordinatorService.get();
     }
@@ -89,7 +90,7 @@
     private static synchronized CompletionInitiatorService getCompletionInitiatorService()
     {
         if (completionInitiatorService.get() == null) {
-            completionInitiatorService.set(new CompletionInitiatorService());
+            completionInitiatorService.set(new CompletionInitiatorService(null, new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "CompletionInitiatorService")));
         }
         return completionInitiatorService.get();
     }

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CompletionCoordinatorPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CompletionCoordinatorPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CompletionCoordinatorPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -25,14 +25,14 @@
  *
  */
 @WebService(name = "CompletionCoordinatorPortType", targetNamespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06",
-        wsdlLocation = "/WEB-INF/wsdl/wsat-completion-coordinator-binding.wsdl",
+        // wsdlLocation = "/WEB-INF/wsdl/wsat-completion-coordinator-binding.wsdl",
         serviceName = "CompletionCoordinatorService",
         portName = "CompletionCoordinatorPortType"
 )
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class CompletionCoordinatorPortTypeImpl implements CompletionCoordinatorPortType
+public class CompletionCoordinatorPortTypeImpl // implements CompletionCoordinatorPortType
 {
     @Resource
     private WebServiceContext webServiceCtx;

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CompletionInitiatorPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CompletionInitiatorPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CompletionInitiatorPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -28,14 +28,14 @@
  *
  */
 @WebService(name = "CompletionInitiatorPortType", targetNamespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06",
-        wsdlLocation = "/WEB-INF/wsdl/wsat-completion-initiator-binding.wsdl",
+        // wsdlLocation = "/WEB-INF/wsdl/wsat-completion-initiator-binding.wsdl",
         serviceName = "CompletionInitiatorService",
         portName = "CompletionInitiatorPortType"
 )
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class CompletionInitiatorPortTypeImpl implements CompletionInitiatorPortType
+public class CompletionInitiatorPortTypeImpl // implements CompletionInitiatorPortType
 {
 
     @Resource
@@ -87,7 +87,7 @@
         }) ;
     }
 
-    @WebMethod(operationName = "fault", action = "http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
+    @WebMethod(operationName = "SoapFault", action = "http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
     @Oneway
     @Action(input="http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
     public void fault(

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CoordinatorPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CoordinatorPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/CoordinatorPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -28,14 +28,14 @@
  *
  */
 @WebService(name = "CoordinatorPortType", targetNamespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06",
-        wsdlLocation = "/WEB-INF/wsdl/wsat-coordinator-binding.wsdl",
+        // wsdlLocation = "/WEB-INF/wsdl/wsat-coordinator-binding.wsdl",
         serviceName = "CoordinatorService",
         portName = "CoordinatorPortType"
 )
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class CoordinatorPortTypeImpl implements CoordinatorPortType
+public class CoordinatorPortTypeImpl // implements CoordinatorPortType
 {
 
     @Resource
@@ -133,7 +133,7 @@
         }) ;
     }
 
-    @WebMethod(operationName = "fault", action = "http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
+    @WebMethod(operationName = "SoapFault", action = "http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
     @Oneway
     @Action(input="http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
     public void fault(

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/ParticipantPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/ParticipantPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsat/sei/ParticipantPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -28,14 +28,14 @@
  *
  */
 @WebService(name = "ParticipantPortType", targetNamespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06",
-        wsdlLocation = "/WEB-INF/wsdl/wsat-participant-binding.wsdl",
+        // wsdlLocation = "/WEB-INF/wsdl/wsat-participant-binding.wsdl",
         serviceName = "ParticipantService",
         portName = "ParticipantPortType"
 )
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class ParticipantPortTypeImpl implements ParticipantPortType
+public class ParticipantPortTypeImpl // implements ParticipantPortType
 {
 
     @Resource
@@ -110,7 +110,7 @@
         }) ;
     }
 
-    @WebMethod(operationName = "fault", action = "http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
+    @WebMethod(operationName = "SoapFault", action = "http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
     @Oneway
     @Action(input="http://docs.oasis-open.org/ws-tx/wsat/2006/06/fault")
     public void fault(

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/client/WSBAClient.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/client/WSBAClient.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/client/WSBAClient.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -6,6 +6,7 @@
 import org.jboss.wsf.common.addressing.MAPBuilderFactory;
 import org.oasis_open.docs.ws_tx.wsba._2006._06.*;
 
+import javax.xml.namespace.QName;
 import javax.xml.ws.BindingProvider;
 import javax.xml.ws.soap.AddressingFeature;
 import javax.xml.ws.wsaddressing.W3CEndpointReference;
@@ -53,7 +54,7 @@
     private static synchronized BusinessAgreementWithParticipantCompletionCoordinatorService getParticipantCompletionCoordinatorService()
     {
         if (participantCompletionCoordinatorService.get() == null) {
-            participantCompletionCoordinatorService.set(new BusinessAgreementWithParticipantCompletionCoordinatorService());
+            participantCompletionCoordinatorService.set(new BusinessAgreementWithParticipantCompletionCoordinatorService(null, new QName("http://docs.oasis-open.org/ws-tx/wsba/2006/06", "BusinessAgreementWithParticipantCompletionCoordinatorService")));
         }
         return participantCompletionCoordinatorService.get();
     }
@@ -65,7 +66,7 @@
     private static synchronized BusinessAgreementWithParticipantCompletionParticipantService getParticipantCompletionParticipantService()
     {
         if (participantCompletionParticipantService.get() == null) {
-            participantCompletionParticipantService.set(new BusinessAgreementWithParticipantCompletionParticipantService());
+            participantCompletionParticipantService.set(new BusinessAgreementWithParticipantCompletionParticipantService(null, new QName("http://docs.oasis-open.org/ws-tx/wsba/2006/06", "BusinessAgreementWithParticipantCompletionParticipantService")));
         }
         return participantCompletionParticipantService.get();
     }
@@ -77,7 +78,7 @@
     private static synchronized BusinessAgreementWithCoordinatorCompletionCoordinatorService getCoordinatorCompletionCoordinatorService()
     {
         if (coordinatorCompletionCoordinatorService.get() == null) {
-            coordinatorCompletionCoordinatorService.set(new BusinessAgreementWithCoordinatorCompletionCoordinatorService());
+            coordinatorCompletionCoordinatorService.set(new BusinessAgreementWithCoordinatorCompletionCoordinatorService(null, new QName("http://docs.oasis-open.org/ws-tx/wsba/2006/06", "BusinessAgreementWithCoordinatorCompletionCoordinatorService")));
         }
         return coordinatorCompletionCoordinatorService.get();
     }
@@ -89,7 +90,7 @@
     private static synchronized BusinessAgreementWithCoordinatorCompletionParticipantService getCoordinatorCompletionParticipantService()
     {
         if (coordinatorCompletionParticipantService.get() == null) {
-            coordinatorCompletionParticipantService.set(new BusinessAgreementWithCoordinatorCompletionParticipantService());
+            coordinatorCompletionParticipantService.set(new BusinessAgreementWithCoordinatorCompletionParticipantService(null, new QName("http://docs.oasis-open.org/ws-tx/wsba/2006/06", "BusinessAgreementWithCoordinatorCompletionParticipantService")));
         }
         return coordinatorCompletionParticipantService.get();
     }

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -31,14 +31,14 @@
  *
  */
 @WebService(name = "BusinessAgreementWithCoordinatorCompletionCoordinatorPortType", targetNamespace = "http://docs.oasis-open.org/ws-tx/wsba/2006/06",
-        wsdlLocation = "/WEB-INF/wsdl/wsba-coordinator-completion-coordinator-binding.wsdl",
+        //wsdlLocation = "/WEB-INF/wsdl/wsba-coordinator-completion-coordinator-binding.wsdl",
         serviceName = "BusinessAgreementWithCoordinatorCompletionCoordinatorService",
         portName = "BusinessAgreementWithCoordinatorCompletionCoordinatorPortType"
 )
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl implements BusinessAgreementWithCoordinatorCompletionCoordinatorPortType
+public class BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl // implements BusinessAgreementWithCoordinatorCompletionCoordinatorPortType
 {
     @Resource
     private WebServiceContext webServiceCtx;

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -30,14 +30,14 @@
  *
  */
 @WebService(name = "BusinessAgreementWithCoordinatorCompletionParticipantPortType", targetNamespace = "http://docs.oasis-open.org/ws-tx/wsba/2006/06",
-        wsdlLocation = "/WEB-INF/wsdl/wsba-coordinator-completion-participant-binding.wsdl",
+        //wsdlLocation = "/WEB-INF/wsdl/wsba-coordinator-completion-participant-binding.wsdl",
         serviceName = "BusinessAgreementWithCoordinatorCompletionParticipantService",
         portName = "BusinessAgreementWithCoordinatorCompletionParticipantPortType"
 )
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl implements BusinessAgreementWithCoordinatorCompletionParticipantPortType
+public class BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl // implements BusinessAgreementWithCoordinatorCompletionParticipantPortType
 {
     @Resource
     private WebServiceContext webServiceCtx;

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -30,14 +30,14 @@
  *
  */
 @WebService(name = "BusinessAgreementWithParticipantCompletionCoordinatorPortType", targetNamespace = "http://docs.oasis-open.org/ws-tx/wsba/2006/06",
-        wsdlLocation = "/WEB-INF/wsdl/wsba-participant-completion-coordinator-binding.wsdl",
+        //wsdlLocation = "/WEB-INF/wsdl/wsba-participant-completion-coordinator-binding.wsdl",
         serviceName = "BusinessAgreementWithParticipantCompletionCoordinatorService",
         portName = "BusinessAgreementWithParticipantCompletionCoordinatorPortType"
 )
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl implements BusinessAgreementWithParticipantCompletionCoordinatorPortType
+public class BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl // implements BusinessAgreementWithParticipantCompletionCoordinatorPortType
 {
     @Resource
     private WebServiceContext webServiceCtx;

Modified: labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl.java	2010-06-30 12:51:07 UTC (rev 33702)
+++ labs/jbosstm/trunk/XTS/WS-T/dev/src11/com/arjuna/webservices11/wsba/sei/BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl.java	2010-06-30 13:12:01 UTC (rev 33703)
@@ -30,14 +30,14 @@
  *
  */
 @WebService(name = "BusinessAgreementWithParticipantCompletionParticipantPortType", targetNamespace = "http://docs.oasis-open.org/ws-tx/wsba/2006/06",
-        wsdlLocation = "/WEB-INF/wsdl/wsba-participant-completion-participant-binding.wsdl",
+        //wsdlLocation = "/WEB-INF/wsdl/wsba-participant-completion-participant-binding.wsdl",
         serviceName = "BusinessAgreementWithParticipantCompletionParticipantService",
         portName = "BusinessAgreementWithParticipantCompletionParticipantPortType"
 )
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 @HandlerChain(file="/handlers.xml")
 @Addressing(required=true)
-public class BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl implements BusinessAgreementWithParticipantCompletionParticipantPortType
+public class BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl // implements BusinessAgreementWithParticipantCompletionParticipantPortType
 {
     @Resource
     private WebServiceContext webServiceCtx;



More information about the jboss-svn-commits mailing list