Author: amilas
Date: Fri Feb 26 13:44:57 2010
New Revision: 916680

URL: http://svn.apache.org/viewvc?rev=916680&view=rev
Log:
isWrapped is used with the RPCMessage receiver. Its' meaning is whether the 
generated elements
from an POJO wrapped with the method name or not.
if we set the wrapped here based on the wsdl is rpc/lit type or not then that 
may cause problems if some one
put a generated wsdl into a .aar file with the rpc message receiver.

Modified:
    
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java

Modified: 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java?rev=916680&r1=916679&r2=916680&view=diff
==============================================================================
--- 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java
 Fri Feb 26 13:44:57 2010
@@ -688,7 +688,6 @@
                 if (isSetMessageQNames) {
                     BindingOperationEntry boe = find(wrappableBOEs, 
wsdl4jBindingOperation);
                     boolean isWrapped = (boe == null) ? false : 
boe.isWrappedInput();
-                    axisInMessage.setWrapped(isWrapped);
                     addQNameReference(axisInMessage, wsdl4jOperation,
                                       wsdl4jBindingInput,
                                       isWrapped);


Reply via email to