Examples of BPELAttributes


Examples of org.apache.ode.bpe.deployment.bpel.BPELAttributes

        }
    }
   
    protected void extractInformations(Properties properties) {
        Properties extProps = (Properties) properties.get(EXT_ACTION_PROPS);
        BPELAttributes attrs = (BPELAttributes) properties.get(INVOKE_ATTRIBUTES);
        WSDLOperationKey opKey = (WSDLOperationKey) properties.get(ExternalServiceAction.OPERATION_KEY);
        extProps.setProperty(JbiInvokeAction.INTERFACE_NAMESPACE, opKey.getNameSpace());
        extProps.setProperty(JbiInvokeAction.INTERFACE_LOCALNAME, opKey.getPortType());
        extProps.setProperty(JbiInvokeAction.OPERATION_NAMESPACE, opKey.getNameSpace());
        extProps.setProperty(JbiInvokeAction.OPERATION_LOCALNAME, opKey.getOperationName());
        for (Enumeration en = attrs.propertyNames(); en.hasMoreElements();) {
            String qn = (String) en.nextElement();
            String uri = attrs.getURI(qn);
            String val = attrs.getProperty(qn);
            if (SM_NS.equals(uri)) {
                if (qn.indexOf(':') > 0) {
                    qn = qn.substring(qn.indexOf(':') + 1);
                }
                if (SM_ENDPOINT.equals(qn)) {
View Full Code Here

Examples of org.apache.ode.bpe.deployment.bpel.BPELAttributes

        }
    }
   
    protected void extractInformations(Properties properties) {
        Properties extProps = (Properties) properties.get(EXT_ACTION_PROPS);
        BPELAttributes attrs = (BPELAttributes) properties.get(INVOKE_ATTRIBUTES);
        WSDLOperationKey opKey = (WSDLOperationKey) properties.get(ExternalServiceAction.OPERATION_KEY);
        extProps.setProperty(JbiInvokeAction.INTERFACE_NAMESPACE, opKey.getNameSpace());
        extProps.setProperty(JbiInvokeAction.INTERFACE_LOCALNAME, opKey.getPortType());
        extProps.setProperty(JbiInvokeAction.OPERATION_NAMESPACE, opKey.getNameSpace());
        extProps.setProperty(JbiInvokeAction.OPERATION_LOCALNAME, opKey.getOperationName());
        for (Enumeration en = attrs.propertyNames(); en.hasMoreElements();) {
            String qn = (String) en.nextElement();
            String uri = attrs.getURI(qn);
            String val = attrs.getProperty(qn);
            if (SM_NS.equals(uri)) {
                if (qn.indexOf(':') > 0) {
                    qn = qn.substring(qn.indexOf(':') + 1);
                }
                if (SM_ENDPOINT.equals(qn)) {
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.