Examples of AxisDescription


Examples of org.apache.axis2.description.AxisDescription

                    return (Policy) policyComponent;
                }
            }
        }

        AxisDescription child;

        for (Iterator iterator = des.getChildren(); iterator.hasNext();) {
            child = (AxisDescription) iterator.next();
            policy = findPolicy(id, child);
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

                    return (Policy) policyComponent;
                }
            }
        }

        AxisDescription child;

        for (Iterator iterator = des.getChildren(); iterator.hasNext();) {
            child = (AxisDescription) iterator.next();
            policy = findPolicy(id, child);
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

        short type = getType(subject);
       
        /*
         * processing the parallel level
         */
        AxisDescription parallelLevel = null;
       
        switch (type) {
        case AXIS_BINDING_MESSAGE:
            parallelLevel = ((AxisBindingMessage) subject).getAxisMessage();
            break;
        case AXIS_BINDING_OPERATION:
            parallelLevel = ((AxisBindingOperation) subject).getAxisOperation();
            break;
        default:
            break;
        }
       
        if (parallelLevel != null) {
            policy = (new AxisPolicyLocator(parallelLevel)).lookup(key);
            if (policy != null) {
                return policy;
            }
        }
       
        AxisDescription upperLevel = getUpperLevel(type, subject);
        if (upperLevel != null) {
            policy = (new AxisPolicyLocator(upperLevel)).lookup(key);
            return policy;
        }               
       
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

                    return (Policy) policyComponent;
                }
            }
        }

        AxisDescription child;

        for (Iterator iterator = des.getChildren(); iterator.hasNext();) {
            child = (AxisDescription) iterator.next();
            policy = findPolicy(id, child);
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

                    return (Policy) policyComponent;
                }
            }
        }

        AxisDescription child;

        for (Iterator iterator = des.getChildren(); iterator.hasNext();) {
            child = (AxisDescription) iterator.next();
            policy = findPolicy(id, child);
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

     * <wsaw:UsingAddressing wsdl:required="true" /> was found in the WSDL that WS-Addressing
     * headers were found on the inbound message
     */
    private void checkUsingAddressing(MessageContext msgContext)
            throws AxisFault {
      AxisDescription ad = msgContext.getAxisService();
        if (ad == null) {
            if (log.isTraceEnabled()) {
                log.trace("checkUsingAddressing: axisService null, cannot check UsingAddressing");
            }
            return;
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

                    return (Policy) policyComponent;
                }
            }
        }

        AxisDescription child;

        for (Iterator<? extends AxisDescription> iterator = des.getChildren(); iterator.hasNext();) {
            child = (AxisDescription) iterator.next();
            policy = findPolicy(id, child);
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

        short type = getType(subject);
       
        /*
         * processing the parallel level
         */
        AxisDescription parallelLevel = null;
       
        switch (type) {
        case AXIS_BINDING_MESSAGE:
            parallelLevel = ((AxisBindingMessage) subject).getAxisMessage();
            break;
        case AXIS_BINDING_OPERATION:
            parallelLevel = ((AxisBindingOperation) subject).getAxisOperation();
            break;
        default:
            break;
        }
       
        if (parallelLevel != null) {
            policy = (new AxisPolicyLocator(parallelLevel)).lookup(key);
            if (policy != null) {
                return policy;
            }
        }
       
        AxisDescription upperLevel = getUpperLevel(type, subject);
        if (upperLevel != null) {
            policy = (new AxisPolicyLocator(upperLevel)).lookup(key);
            return policy;
        }               
       
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

                    return (Policy) policyComponent;
                }
            }
        }

        AxisDescription child;

        for (Iterator iterator = des.getChildren(); iterator.hasNext();) {
            child = (AxisDescription) iterator.next();
            policy = findPolicy(id, child);
View Full Code Here

Examples of org.apache.axis2.description.AxisDescription

                log.trace("checkUsingAddressing: WSAddressingFlag from MessageContext=" + addressingFlag);
            }
        } else {
            // On provider side, get required value from AxisOperation
            // (set by AddressingConfigurator and UsingAddressing WSDL processing).
            AxisDescription ad = msgContext.getAxisService();
            if(msgContext.getAxisOperation()!=null){
             ad = msgContext.getAxisOperation();
            }
            addressingFlag =
                AddressingHelper.getAddressingRequirementParemeterValue(ad);
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.