Ooops... My bad:(....
I have missed to commit the changes to KandulaDemoServiceStub... Changes were there locally... So that there were no errors in my local build...
Consider the patch being applied...
Thanks,
~Thilina
On 11/6/05, Thilina Gunarathne <[EMAIL PROTECTED]> wrote:
Hi,Forwarding to the list....Hannes,Pls submit your patches through the mailing list....>>We will have a look at the testcases, it sure is a good starting point
>>to get an impression of "what is there".
This is exactly what I meant.....:)...Always feel free to suggest changes if you see any possible bugs or issues in the code..
Nope...No test cases in Kandula1 either....~ThilinaIndex: C:/he/anderes_svn/kandula.apache.org/java/test/org/apache/kandula/integration/KandulaDemoServiceStub.java
---------- Forwarded message ----------
From: Hannes Erven < [EMAIL PROTECTED]>
Date: Nov 5, 2005 4:53 PM
Subject: Re: WS-BA implementation // Controller separation // Participation in Kandula
To: Thilina Gunarathne < [EMAIL PROTECTED]>
Cc: Chicken George < [EMAIL PROTECTED]>
Hi Thilina,
thanks for fixing & checking in the Axis2 name changes. Attached is the
patch required for the KandulaDemoServiceStub to compile cleanly.
We will have a look at the testcases, it sure is a good starting point
to get an impression of "what is there".
There aren't test cases for Kandula 1, are there?
Best regards,
-hannes
===================================================================
--- C:/he/anderes_svn/kandula.apache.org/java/test/org/apache/kandula/integration/KandulaDemoServiceStub.java (revision 330987)
+++ C:/he/anderes_svn/kandula.apache.org/java/test/org/apache/kandula/integration/KandulaDemoServiceStub.java (working copy)
@@ -24,10 +24,11 @@
import org.apache.axis2.addressing.AnyContentType;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.clientapi.MessageSender;
-import org.apache.axis2.description.InOnlyOperationDescription ;
-import org.apache.axis2.description.OutInOperationDescription;
+import org.apache.axis2.description.AxisOperation;
+import org.apache.axis2.description.InOnlyAxisOperation;
+import org.apache.axis2.description.OutInAxisOperation ;
import org.apache.axis2.description.ParameterImpl;
-import org.apache.axis2.description.ServiceDescription;
+import org.apache.axis2.description.AxisService;
import org.apache.axis2.om.OMAbstractFactory;
import org.apache.axis2.om.OMElement;
import org.apache.axis2.om.OMNamespace;
@@ -45,19 +46,19 @@
public static final String AXIS2_HOME = ".";
- protected static org.apache.axis2.description.OperationDescription [] operations;
+ protected static org.apache.axis2.description.AxisOperation[] operations;
static {
//creating the Service
- _service = new org.apache.axis2.description.ServiceDescription (
+ _service = new org.apache.axis2.description.AxisService(
new javax.xml.namespace.QName( "KandulaDemoService"));
//creating the operations
- org.apache.axis2.description.OperationDescription operationDesc;
- operations = new org.apache.axis2.description.OperationDescription[1];
+ org.apache.axis2.description.AxisOperation operationDesc;
+ operations = new org.apache.axis2.description.AxisOperation [1];
- operationDesc = new OutInOperationDescription();
+ operationDesc = new OutInAxisOperation();
operationDesc.setName(new javax.xml.namespace.QName("creditOperation"));
operations[0] = operationDesc;
_service.addOperation(operationDesc);
--
"May the SourcE be with u"
http://webservices.apache.org/~thilina/
http://thilinag.blogspot.com/ http://www.bloglines.com/blog/Thilina
--
"May the SourcE be with u"
http://webservices.apache.org/~thilina/
http://thilinag.blogspot.com/ http://www.bloglines.com/blog/Thilina
