You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by am...@apache.org on 2009/01/30 06:37:03 UTC

svn commit: r739183 - /webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/TestingUtils.java

Author: amilas
Date: Fri Jan 30 05:37:02 2009
New Revision: 739183

URL: http://svn.apache.org/viewvc?rev=739183&view=rev
Log:
fixing the issue AXIS2-4223

Modified:
    webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/TestingUtils.java

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/TestingUtils.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/TestingUtils.java?rev=739183&r1=739182&r2=739183&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/TestingUtils.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/TestingUtils.java Fri Jan 30 05:37:02 2009
@@ -33,7 +33,7 @@
         OMFactory fac = OMAbstractFactory.getOMFactory();
         OMNamespace omNs = fac.createOMNamespace("http://org.apache.axis2/xsd", "ns1");
         OMElement method = fac.createOMElement("echoOM", omNs);
-        OMElement value = fac.createOMElement("myValue", omNs);
+        OMElement value = fac.createOMElement("omEle", omNs);
         value.addChild(
                 fac.createOMText(value, "Isaac Asimov, The Foundation Trilogy"));
         method.addChild(value);
@@ -44,7 +44,7 @@
         OMFactory fac = OMAbstractFactory.getOMFactory();
         OMNamespace omNs = fac.createOMNamespace(nameSpace, "ns1");
         OMElement method = fac.createOMElement("echoOM", omNs);
-        OMElement value = fac.createOMElement("myValue", omNs);
+        OMElement value = fac.createOMElement("omEle", omNs);
         value.addChild(
                 fac.createOMText(value, "Isaac Asimov, The Foundation Trilogy"));
         method.addChild(value);