Package org.apache.wsif.wsdl.extensions.jms

Examples of org.apache.wsif.wsdl.extensions.jms.JMSFaultProperty


        List fProps = indic.getJMSFaultProperties();
        Iterator itFProp = fProps.iterator();
        while (itFProp.hasNext()) {
          Object next = itFProp.next();
          if (next instanceof JMSFaultProperty) {
            JMSFaultProperty fProp = (JMSFaultProperty) next;
            String partName = fProp.getPart();
            String propName = fProp.getName();

            if (partName != null && partName.length() > 0)
              try {
                Object propValue =
                  jmsDest.getProperty(propName);
View Full Code Here


            return false;
        }

        Iterator itFProps = fProps.iterator();
        while (itFProps.hasNext()) {
            JMSFaultProperty fProp = (JMSFaultProperty) itFProps.next();
            String propName = fProp.getName();
            if (propName == null
                || fProp.getType() == null
                || fProp.getValue() == null)
                continue;

            Object propValue = null;
            try {
                if (!out.propertyExists(propName))
                    continue;

                propValue = out.getObjectProperty(propName);
            } catch (JMSException je) {
                Trc.ignoredException(je);
                continue;
            }

            if (propValue != null
                && fProp.getValue().equals(propValue.toString())) {
                Trc.exit(true);
                return true;
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.wsif.wsdl.extensions.jms.JMSFaultProperty

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.