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 de...@apache.org on 2007/05/30 12:33:51 UTC

svn commit: r542792 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService2OM.java

Author: deepal
Date: Wed May 30 03:33:35 2007
New Revision: 542792

URL: http://svn.apache.org/viewvc?view=rev&rev=542792
Log:
fixing https://issues.apache.org/jira/browse/AXIS2-2630

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService2OM.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService2OM.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService2OM.java?view=diff&rev=542792&r1=542791&r2=542792
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService2OM.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService2OM.java Wed May 30 03:33:35 2007
@@ -821,6 +821,8 @@
                                                                  mime);
                     input.addChild(inputelement);
                     inputelement.addAttribute("type", "text/xml", null);
+                    inputelement.addAttribute("part", axisOperation.getName()
+                    .getLocalPart(), null);
                     operation.addChild(input);
                 }
             }
@@ -842,6 +844,8 @@
                     OMElement outElement = fac.createOMElement("content", mime);
                     outElement.addChild(outElement);
                     outElement.addAttribute("type", "text/xml", null);
+                     outElement.addAttribute("part", axisOperation.getName()
+                    .getLocalPart(), null);
                     output.addChild(outElement);
                     operation.addChild(output);
                 }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org