Package org.apache.axis.description

Examples of org.apache.axis.description.Parameter


            RPCElement   body;

            if (!(bodies.get(bNum) instanceof RPCElement)) {
                SOAPBodyElement bodyEl = (SOAPBodyElement)bodies.get(bNum);
                if (operation != null) {
                    Parameter param = operation.getParameter(bNum);
                    Object val = bodyEl.getValueAsType(param.getTypeQName());
                    body = new RPCElement("",
                                          operation.getName(),
                                          new Object [] { val });
                } else {
                    continue;
View Full Code Here

TOP

Related Classes of org.apache.axis.description.Parameter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.