You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ng...@apache.org on 2007/02/14 01:29:48 UTC

svn commit: r507332 - /webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/OperationDescriptionImpl.java

Author: ngallardo
Date: Tue Feb 13 16:29:47 2007
New Revision: 507332

URL: http://svn.apache.org/viewvc?view=rev&rev=507332
Log:
AXIS2-2196\Contributor: Dustin Amrhein\Dustin's patch for this issue.

Modified:
    webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/OperationDescriptionImpl.java

Modified: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/OperationDescriptionImpl.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/OperationDescriptionImpl.java?view=diff&rev=507332&r1=507331&r2=507332
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/OperationDescriptionImpl.java (original)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/OperationDescriptionImpl.java Tue Feb 13 16:29:47 2007
@@ -191,14 +191,13 @@
         	
         	try {
         		if (isOneWay()) {               
-        			axisOperation = AxisOperationFactory.getOperationDescription(WSDLConstants.WSDL20_2004_Constants.MEP_URI_IN_ONLY);
+        			axisOperation = AxisOperationFactory.getOperationDescription(WSDLConstants.WSDL20_2006Constants.MEP_URI_IN_ONLY);
         		} else {
-        			axisOperation = AxisOperationFactory.getOperationDescription(WSDLConstants.WSDL20_2004_Constants.MEP_URI_IN_OUT);
+        			axisOperation = AxisOperationFactory.getOperationDescription(WSDLConstants.WSDL20_2006Constants.MEP_URI_IN_OUT);
         		}
         		//TODO: There are several other MEP's, such as: OUT_ONLY, IN_OPTIONAL_OUT, OUT_IN, OUT_OPTIONAL_IN, ROBUST_OUT_ONLY,
         		//                                              ROBUST_IN_ONLY
         		//      Determine how these MEP's should be handled, if at all
-        		
         	} catch (Exception e) {
         		AxisFault ex = new AxisFault("OperationDescriptionImpl:cons - unable to build AxisOperation ");
         	}



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