Examples of SOAPFaultCode


Examples of org.apache.axis2.soap.SOAPFaultCode

        // this is a special case. This fault element may contain its children in any order. But spec mandates a specific order
        // the overriding of the method will facilitate that. Not sure this is the best method to do this :(
        build();

        OMSerializerUtil.serializeStartpart(this, omOutput);
        SOAPFaultCode faultCode = getCode();
        if (faultCode != null) {
            faultCode.serializeWithCache(omOutput);
        }
        SOAPFaultReason faultReason = getReason();
        if (faultReason != null) {
            faultReason.serializeWithCache(omOutput);
        }
View Full Code Here

Examples of org.apache.woden.wsdl20.extensions.soap.SOAPFaultCode

            return SOAPFaultCode.ANY;
        }
       
        if(code.isQName())
        {
            return new SOAPFaultCode(code.getQName());
        }
        else
        {
            //the wsoap:code attribute contains an invalid value (i.e. not an xs:QName or the xs:token #any)
            //TODO confirm if this should be represented in the Component model as a null
View Full Code Here

Examples of org.apache.ws.commons.soap.SOAPFaultCode

     * get turned into AxisFaults.
     *
     * @param fault incoming fault
     */
    private void init(SOAPFault fault) {
        SOAPFaultCode faultcodesource = fault.getCode();

        faultCode = new FaultCode(faultcodesource);
        detail = fault.getDetail();
        fault.getNode();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.