Hi all,

I was reading the post about compiling kandula2 with axis2-1.5.1. The patch is attached. I was writing an ant file to compile it as I don't know maven much (and the weird dependency calculation). If requested, I can send it, too.

The code generation with WSDL2Java works, but camelcase method names are generated - this patch changes the function calls and *Skeleton function names to lowercase.

Cheers, Bastian.
diff --git a/folder b/folder
deleted file mode 100644
index c1e3d25..0000000
Binary files a/folder and /dev/null differ
diff --git a/schema/wscoor.wsdl b/schema/wscoor.wsdl
index dfd3409..a792b40 100644
--- a/schema/wscoor.wsdl
+++ b/schema/wscoor.wsdl
@@ -34,7 +34,7 @@
                </wsdl:operation>
        </wsdl:portType>
        <wsdl:portType name="RegistrationPortType">
-               <wsdl:operation name="RegisterOperation">
+               <wsdl:operation name="registerOperation">
                        <wsdl:input message="wscoor:Register" />
                        <wsdl:output message="wscoor:RegisterResponse" />
                </wsdl:operation>
@@ -60,7 +60,7 @@
                type="wscoor:RegistrationPortType">
                <soap:binding transport="http://schemas.xmlsoap.org/soap/http";
                        style="document" />
-               <wsdl:operation name="RegisterOperation">
+               <wsdl:operation name="registerOperation">
                        <soap:operation
                                
soapAction="http://docs.oasis-open.org/ws-tx/wscoor/2006/06/Register"; />
                        <wsdl:input>
diff --git a/src/org/apache/kandula/coordinator/ba/BACoordinator.java 
b/src/org/apache/kandula/coordinator/ba/BACoordinator.java
index 38df208..dc59f04 100644
--- a/src/org/apache/kandula/coordinator/ba/BACoordinator.java
+++ b/src/org/apache/kandula/coordinator/ba/BACoordinator.java
@@ -106,7 +106,7 @@ public class BACoordinator implements Registerable {
                                        Complete completeParam = new Complete();
                                        completeParam.setComplete(new 
NotificationType());
                                        
participant.setStatus(BACoordinatorStatus.STATUS_COMPLETING);
-                                       
participantServiceStub.CompleteOperation(completeParam);
+                                       
participantServiceStub.completeOperation(completeParam);
                                } catch (Exception e) {
                                        log.fatal("WS_BA : " + 
baContext.getCoordinationContext().getActivityID()
                                                        + " : completeOperation 
:" + participant.getEnlistmentId() + " : " + e);
@@ -161,7 +161,7 @@ public class BACoordinator implements Registerable {
                                Close closeParam = new Close();
                                closeParam.setClose(new NotificationType());
                                
baParticipantInformation.setStatus(BACoordinatorStatus.STATUS_CLOSING);
-                               
participantServiceStub.CloseOperation(closeParam);
+                               
participantServiceStub.closeOperation(closeParam);
                        } catch (Exception e) {
                                log.fatal("WS_BA : " + 
baContext.getCoordinationContext().getActivityID()
                                                + " : close Operation :" + 
baParticipantInformation + " : " + e);
@@ -204,7 +204,7 @@ public class BACoordinator implements Registerable {
                                Compensate compensate = new Compensate();
                                compensate.setCompensate(new 
NotificationType());
                                
baParticipantInformation.setStatus(BACoordinatorStatus.STATUS_COMPENSATING);
-                               
participantServiceStub.CompensateOperation(compensate);
+                               
participantServiceStub.compensateOperation(compensate);
                        } catch (Exception e) {
                                log.fatal("WS_BA : " + 
baContext.getCoordinationContext().getActivityID()
                                                + " : compensateOperation :" + 
baParticipantInformation + " : " + e);
@@ -320,7 +320,7 @@ public class BACoordinator implements Registerable {
                                participantInformation.getEpr());
                Cancel cancel = new Cancel();
                cancel.setCancel(new NotificationType());
-               participantServiceStub.CancelOperation(cancel);
+               participantServiceStub.cancelOperation(cancel);
        }
 
        public void canceledOperation(BAActivityContext baContext, String 
enlistmentID)
@@ -424,7 +424,7 @@ public class BACoordinator implements Registerable {
                                Exited exited = new Exited();
                                exited.setExited(new NotificationType());
                                
baParticipantInformation.setStatus(BACoordinatorStatus.STATUS_ENDED);
-                               participantServiceStub.ExitedOperation(exited);
+                               participantServiceStub.exitedOperation(exited);
                        } catch (Exception e) {
                                log.fatal("WS_BA : " + 
baContext.getCoordinationContext().getActivityID()
                                                + " : exited Operation :" + 
baParticipantInformation + " : " + e);
@@ -544,7 +544,7 @@ public class BACoordinator implements Registerable {
                                failed.setFailed(new NotificationType());
                                
baParticipantInformation.setStatus(BACoordinatorStatus.STATUS_ENDED);
                                
baContext.removeParticipant(baParticipantInformation.getEnlistmentId());
-                               participantServiceStub.FailedOperation(failed);
+                               participantServiceStub.failedOperation(failed);
                        } catch (Exception e) {
                                log.fatal("WS_BA : " + 
baContext.getCoordinationContext().getActivityID()
                                                + " : faultedOperation :" + 
baParticipantInformation + " : " + e);
diff --git a/src/org/apache/kandula/initiator/TransactionManager.java 
b/src/org/apache/kandula/initiator/TransactionManager.java
index 617ce56..0ecb827 100644
--- a/src/org/apache/kandula/initiator/TransactionManager.java
+++ b/src/org/apache/kandula/initiator/TransactionManager.java
@@ -160,7 +160,7 @@ public class TransactionManager {
                                
.getEPRTypeFromEPR(registrationRequeterPortEPR));
                register.setRegister(registerType);
                // Actual WS call for registeration
-               RegisterResponse registerResponse = 
registrationCoordinator.RegisterOperation(register);
+               RegisterResponse registerResponse = 
registrationCoordinator.registerOperation(register);
                EndpointReference coordinationEPR = 
EndpointReferenceFactory.getEPR(registerResponse
                                
.getRegisterResponse().getCoordinatorProtocolService());
                return coordinationEPR;
@@ -176,7 +176,7 @@ public class TransactionManager {
                                .getCoordinationType()));
                
context.setCreateCoordinationContext(createCoordinationContextType);
                CreateCoordinationContextResponse response = 
activationCoordinator
-                               .CreateCoordinationContextOperation(context);
+                               .createCoordinationContextOperation(context);
                CreateCoordinationContextResponseType 
createCoordinationContextResponse = response
                                .getCreateCoordinationContextResponse();
                CoordinationContext_type0 coordinationContextType = 
createCoordinationContextResponse.getCoordinationContext();
diff --git a/src/org/apache/kandula/participant/ParticipantUtility.java 
b/src/org/apache/kandula/participant/ParticipantUtility.java
index 5b4459f..7a23085 100644
--- a/src/org/apache/kandula/participant/ParticipantUtility.java
+++ b/src/org/apache/kandula/participant/ParticipantUtility.java
@@ -80,7 +80,7 @@ public class ParticipantUtility {
                        register.setRegister(registerType);
                        // Actual WS call for registeration
                        RegisterResponse registerResponse = 
registrationCoordinator
-                                       .RegisterOperation(register);
+                                       .registerOperation(register);
                        
participantContext.setCoordinationEPR(EndpointReferenceFactory
                                        
.getEPR(registerResponse.getRegisterResponse()
                                                        
.getCoordinatorProtocolService()));
diff --git 
a/src/org/apache/kandula/participant/ba/BAParticipantTransactionSentCoordinator.java
 
b/src/org/apache/kandula/participant/ba/BAParticipantTransactionSentCoordinator.java
index 07d0dcd..a1e4337 100644
--- 
a/src/org/apache/kandula/participant/ba/BAParticipantTransactionSentCoordinator.java
+++ 
b/src/org/apache/kandula/participant/ba/BAParticipantTransactionSentCoordinator.java
@@ -46,7 +46,7 @@ public class BAParticipantTransactionSentCoordinator {
                                Completed completed = new Completed();
                                completed.setCompleted(new NotificationType());
                                
context.setStatus(Status.BAParticipantStatus.STATUS_COMPLETED);
-                               serviceStub.CompletedOperation(completed);
+                               serviceStub.completedOperation(completed);
                        } catch (Exception e) {
                                log.fatal("WS_BA : " + 
context.getCoordinationContext().getActivityID()
                                                + " : completed :" + 
context.getID() + " : " + e);
@@ -92,7 +92,7 @@ public class BAParticipantTransactionSentCoordinator {
                                                
.setTo(context.getCoordinationEPR());
                                Closed closed = new Closed();
                                closed.setClosed(new NotificationType());
-                               coordinatorStub.ClosedOperation(closed);
+                               coordinatorStub.closedOperation(closed);
                                
context.setStatus(Status.BAParticipantStatus.STATUS_ENDED);
                                StorageUtils.forgetContext(context.getID());
                        } catch (Exception e) {
@@ -129,7 +129,7 @@ public class BAParticipantTransactionSentCoordinator {
                                                context.getCoordinationEPR());
                                Canceled canceled = new Canceled();
                                canceled.setCanceled(new NotificationType());
-                               
coordinatorServiceStub.CanceledOperation(canceled);
+                               
coordinatorServiceStub.canceledOperation(canceled);
                                
context.setStatus(Status.BAParticipantStatus.STATUS_ENDED);
                                StorageUtils.forgetContext(context.getID());
                        } catch (Exception e) {
@@ -155,7 +155,7 @@ public class BAParticipantTransactionSentCoordinator {
                                Exit exit = new Exit();
                                exit.setExit(new NotificationType());
                                
context.setStatus(Status.BAParticipantStatus.STATUS_EXITING);
-                               coordinatorStub.ExitOperation(exit);
+                               coordinatorStub.exitOperation(exit);
                        } catch (Exception e) {
                                log.fatal("WS_BA : " + 
context.getCoordinationContext().getActivityID()
                                                + " : closed :" + 
context.getID() + " : " + e);
@@ -201,7 +201,7 @@ public class BAParticipantTransactionSentCoordinator {
                                Compensated compensated = new Compensated();
                                compensated.setCompensated(new 
NotificationType());
                                
context.setStatus(Status.BAParticipantStatus.STATUS_ENDED);
-                               
coordinatorStub.CompensatedOperation(compensated);
+                               
coordinatorStub.compensatedOperation(compensated);
                        } catch (Exception e) {
                                log.fatal("WS_BA : " + 
context.getCoordinationContext().getActivityID()
                                                + " : compensated :" + 
context.getID() + " : " + e);
@@ -251,7 +251,7 @@ public class BAParticipantTransactionSentCoordinator {
                        exceptionType.setExceptionIdentifier(new 
QName("Bimalee"));
                        fail.setFail(exceptionType);
                        
context.setStatus(Status.BAParticipantStatus.STATUS_ENDED);
-                       coordinatorStub.FailOperation(fail);
+                       coordinatorStub.failOperation(fail);
                } catch (Exception e) {
                        log.fatal("WS_BA : " + 
context.getCoordinationContext().getActivityID()
                                        + " : compensated :" + context.getID() 
+ " : " + e);
diff --git 
a/src/org/apache/kandula/wsba/BACoordinatorCompletionCoordinatorServiceSkeleton.java
 
b/src/org/apache/kandula/wsba/BACoordinatorCompletionCoordinatorServiceSkeleton.java
index 103b45a..a54f7d1 100644
--- 
a/src/org/apache/kandula/wsba/BACoordinatorCompletionCoordinatorServiceSkeleton.java
+++ 
b/src/org/apache/kandula/wsba/BACoordinatorCompletionCoordinatorServiceSkeleton.java
@@ -38,7 +38,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
        private static final Log log = LogFactory
                        
.getLog(BACoordinatorCompletionCoordinatorServiceSkeleton.class);
 
-       public void 
CompensatedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Compensated 
param0)
+       public void 
compensatedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Compensated 
param0)
                        throws AxisFault {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
                String activityId = 
header.getFirstChildWithName(Constants.TRANSACTION_ID_PARAMETER)
@@ -71,7 +71,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
         * @throws AxisFault
         * 
         */
-       public void 
ClosedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Closed param1)
+       public void 
closedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Closed param1)
                        throws AxisFault {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
                String activityId = 
header.getFirstChildWithName(Constants.TRANSACTION_ID_PARAMETER)
@@ -104,7 +104,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
         * @throws AxisFault
         * 
         */
-       public void ExitOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Exit 
param2)
+       public void exitOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Exit 
param2)
                        throws AxisFault
 
        {
@@ -139,7 +139,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
         * @throws AxisFault
         * 
         */
-       public void 
CompletedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Completed param3)
+       public void 
completedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Completed param3)
                        throws AxisFault {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
                String activityId = 
header.getFirstChildWithName(Constants.TRANSACTION_ID_PARAMETER)
@@ -171,7 +171,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
         * @param param4
         * 
         */
-       public void 
CannotComplete(org.oasis_open.docs.ws_tx.wsba._2006._06.CannotComplete param4)
+       public void 
cannotComplete(org.oasis_open.docs.ws_tx.wsba._2006._06.CannotComplete param4)
 
        {
                // Todo fill this with the necessary business logic
@@ -184,7 +184,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
         * @param param5
         * 
         */
-       public void 
GetStatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.GetStatus param5)
+       public void 
getStatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.GetStatus param5)
 
        {
                // Todo fill this with the necessary business logic
@@ -198,7 +198,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
         * @throws AxisFault
         * 
         */
-       public void FailOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Fail 
param6)
+       public void failOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Fail 
param6)
                        throws AxisFault
 
        {
@@ -233,7 +233,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
         * @param param7
         * 
         */
-       public void 
StatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Status param7)
+       public void 
statusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Status param7)
 
        {
                // Todo fill this with the necessary business logic
@@ -247,7 +247,7 @@ public class 
BACoordinatorCompletionCoordinatorServiceSkeleton {
         * @throws AxisFault
         * 
         */
-       public void 
CanceledOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Canceled param8)
+       public void 
canceledOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Canceled param8)
                        throws AxisFault
 
        {
diff --git 
a/src/org/apache/kandula/wsba/BACoordinatorCompletionParticipantServiceSkeleton.java
 
b/src/org/apache/kandula/wsba/BACoordinatorCompletionParticipantServiceSkeleton.java
index 2e3a955..acd9b72 100644
--- 
a/src/org/apache/kandula/wsba/BACoordinatorCompletionParticipantServiceSkeleton.java
+++ 
b/src/org/apache/kandula/wsba/BACoordinatorCompletionParticipantServiceSkeleton.java
@@ -39,7 +39,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
        private static final Log log = LogFactory
                        
.getLog(BACoordinatorCompletionParticipantServiceSkeleton.class);
 
-       public void 
CloseOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Close param1)
+       public void 
closeOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Close param1)
                        throws AxisFault {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
                OMElement firstChildWithName = header
@@ -73,7 +73,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
                }
        }
 
-       public void 
CompleteOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Complete param4)
+       public void 
completeOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Complete param4)
                        throws AxisFault {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
                OMElement firstChildWithName = header
@@ -107,7 +107,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
                }
        }
 
-       public void 
CancelOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Cancel param3)
+       public void 
cancelOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Cancel param3)
                        throws AxisFault {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
                OMElement firstChildWithName = header
@@ -143,7 +143,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
                }
        }
 
-       public void 
ExitedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Exited param8)
+       public void 
exitedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Exited param8)
                        throws AxisFault
        {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
@@ -180,7 +180,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
                }
        }
        
-       public void 
CompensateOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Compensate param2) 
throws AxisFault
+       public void 
compensateOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Compensate param2) 
throws AxisFault
 
        {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
@@ -214,7 +214,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
                }
        }
 
-       public void 
FailedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Failed param0) throws 
AxisFault
+       public void 
failedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Failed param0) throws 
AxisFault
 
        {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
@@ -257,7 +257,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
         * @param param5
         * 
         */
-       public void 
GetStatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.GetStatus param5) {
+       public void 
getStatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.GetStatus param5) {
                // Todo fill this with the necessary business logic
        }
 
@@ -267,7 +267,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
         * @param param6
         * 
         */
-       public void 
NotCompleted(org.oasis_open.docs.ws_tx.wsba._2006._06.NotCompleted param6)
+       public void 
notCompleted(org.oasis_open.docs.ws_tx.wsba._2006._06.NotCompleted param6)
 
        {
                // Todo fill this with the necessary business logic
@@ -280,7 +280,7 @@ public class 
BACoordinatorCompletionParticipantServiceSkeleton {
         * @param param7
         * 
         */
-       public void 
StatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Status param7)
+       public void 
statusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Status param7)
 
        {
                // Todo fill this with the necessary business logic
diff --git 
a/src/org/apache/kandula/wsba/BAParticipantCompletionCoordinatorServiceSkeleton.java
 
b/src/org/apache/kandula/wsba/BAParticipantCompletionCoordinatorServiceSkeleton.java
index 6d99bb8..f63eb93 100644
--- 
a/src/org/apache/kandula/wsba/BAParticipantCompletionCoordinatorServiceSkeleton.java
+++ 
b/src/org/apache/kandula/wsba/BAParticipantCompletionCoordinatorServiceSkeleton.java
@@ -21,7 +21,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
        private static final Log log = LogFactory
                        
.getLog(BAParticipantCompletionCoordinatorServiceSkeleton.class);
 
-       public void 
CompletedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Completed param3)
+       public void 
completedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Completed param3)
                        throws AxisFault
 
        {
@@ -41,7 +41,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
                }
        }
 
-       public void 
ClosedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Closed param1)
+       public void 
closedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Closed param1)
                        throws AxisFault
 
        {
@@ -64,7 +64,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
                }
        }
 
-       public void 
CanceledOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Canceled param8) 
throws AxisFault
+       public void 
canceledOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Canceled param8) 
throws AxisFault
 
        {
                OMElement header = 
MessageContext.getCurrentMessageContext().getEnvelope().getHeader();
@@ -87,7 +87,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
 
        }
        
-       public void 
CompensatedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Compensated 
param0)
+       public void 
compensatedOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Compensated 
param0)
 
        {
 /*             try {
@@ -110,7 +110,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
         * @param param2
         * 
         */
-       public void ExitOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Exit 
param2)
+       public void exitOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Exit 
param2)
 
        {
                // Todo fill this with the necessary business logic
@@ -132,7 +132,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
         * @param param4
         * 
         */
-       public void 
CannotComplete(org.oasis_open.docs.ws_tx.wsba._2006._06.CannotComplete param4)
+       public void 
cannotComplete(org.oasis_open.docs.ws_tx.wsba._2006._06.CannotComplete param4)
 
        {
                // Todo fill this with the necessary business logic
@@ -145,7 +145,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
         * @param param5
         * 
         */
-       public void 
GetStatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.GetStatus param5)
+       public void 
getStatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.GetStatus param5)
 
        {
                // Todo fill this with the necessary business logic
@@ -158,7 +158,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
         * @param param6
         * 
         */
-       public void FailOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Fail 
param6)
+       public void failOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Fail 
param6)
 
        {
                // Todo fill this with the necessary business logic
@@ -171,7 +171,7 @@ public class 
BAParticipantCompletionCoordinatorServiceSkeleton {
         * @param param7
         * 
         */
-       public void 
StatusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Status param7)
+       public void 
statusOperation(org.oasis_open.docs.ws_tx.wsba._2006._06.Status param7)
 
        {
                // Todo fill this with the necessary business logic
diff --git 
a/src/org/apache/kandula/wsba/BAParticipantCompletionParticipantServiceSkeleton.java
 
b/src/org/apache/kandula/wsba/BAParticipantCompletionParticipantServiceSkeleton.java
index 8b48b27..5f17769 100644
--- 
a/src/org/apache/kandula/wsba/BAParticipantCompletionParticipantServiceSkeleton.java
+++ 
b/src/org/apache/kandula/wsba/BAParticipantCompletionParticipantServiceSkeleton.java
@@ -26,7 +26,7 @@ import org.apache.kandula.storage.Store;
           * @param param0
          
          */
-        public  void FailedOperation
+        public  void failedOperation
                   (
           org.oasis_open.docs.ws_tx.wsba._2006._06.Failed param0
           )
@@ -55,7 +55,7 @@ import org.apache.kandula.storage.Store;
           * @param param1
          
          */
-        public  void CloseOperation
+        public  void closeOperation
                   (
           org.oasis_open.docs.ws_tx.wsba._2006._06.Close param1
           )
@@ -86,7 +86,7 @@ import org.apache.kandula.storage.Store;
           * @param param2
          
          */
-        public  void CompensateOperation
+        public  void compensateOperation
                   (
           org.oasis_open.docs.ws_tx.wsba._2006._06.Compensate param2
           )
@@ -117,7 +117,7 @@ import org.apache.kandula.storage.Store;
           * @param param3
          
          */
-        public  void CancelOperation( 
org.oasis_open.docs.ws_tx.wsba._2006._06.Cancel param3)
+        public  void cancelOperation( 
org.oasis_open.docs.ws_tx.wsba._2006._06.Cancel param3)
            {
 //             StorageFactory.getInstance().setConfigurationContext(
 //                                     
MessageContext.getCurrentMessageContext().getServiceContext().getConfigurationContext());
@@ -142,7 +142,7 @@ import org.apache.kandula.storage.Store;
           * @param param4
          
          */
-        public  void GetStatusOperation
+        public  void getStatusOperation
                   (
           org.oasis_open.docs.ws_tx.wsba._2006._06.GetStatus param4
           )
@@ -159,7 +159,7 @@ import org.apache.kandula.storage.Store;
           * @param param5
          
          */
-        public  void NotCompleted
+        public  void notCompleted
                   (
           org.oasis_open.docs.ws_tx.wsba._2006._06.NotCompleted param5
           )
@@ -176,7 +176,7 @@ import org.apache.kandula.storage.Store;
           * @param param6
          
          */
-        public  void StatusOperation
+        public  void statusOperation
                   (
           org.oasis_open.docs.ws_tx.wsba._2006._06.Status param6
           )
@@ -193,7 +193,7 @@ import org.apache.kandula.storage.Store;
           * @param param7
          
          */
-        public  void ExitedOperation
+        public  void exitedOperation
                   (
           org.oasis_open.docs.ws_tx.wsba._2006._06.Exited param7
           )
diff --git a/src/org/apache/kandula/wscoor/ActivationServiceSkeleton.java 
b/src/org/apache/kandula/wscoor/ActivationServiceSkeleton.java
index 26766ed..59b0982 100644
--- a/src/org/apache/kandula/wscoor/ActivationServiceSkeleton.java
+++ b/src/org/apache/kandula/wscoor/ActivationServiceSkeleton.java
@@ -39,7 +39,7 @@ public class ActivationServiceSkeleton {
         * @throws AxisFault
         * 
         */
-       public 
org.oasis_open.docs.ws_tx.wscoor._2006._06.CreateCoordinationContextResponse 
CreateCoordinationContextOperation(
+       public 
org.oasis_open.docs.ws_tx.wscoor._2006._06.CreateCoordinationContextResponse 
createCoordinationContextOperation(
                        
org.oasis_open.docs.ws_tx.wscoor._2006._06.CreateCoordinationContext param0)
                        throws AxisFault {
                /*
diff --git a/src/org/apache/kandula/wscoor/RegistrationServiceSkeleton.java 
b/src/org/apache/kandula/wscoor/RegistrationServiceSkeleton.java
index 0e04825..f2209dc 100644
--- a/src/org/apache/kandula/wscoor/RegistrationServiceSkeleton.java
+++ b/src/org/apache/kandula/wscoor/RegistrationServiceSkeleton.java
@@ -43,7 +43,7 @@ public class RegistrationServiceSkeleton {
         * @throws AxisFault 
         
         */
-       public org.oasis_open.docs.ws_tx.wscoor._2006._06.RegisterResponse 
RegisterOperation(
+       public org.oasis_open.docs.ws_tx.wscoor._2006._06.RegisterResponse 
registerOperation(
                        org.oasis_open.docs.ws_tx.wscoor._2006._06.Register 
param0) throws AxisFault
 
        {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to