Package org.apache.synapse.endpoints.utils

Examples of org.apache.synapse.endpoints.utils.EndpointDefinition


                }
            }
        }

        if (serviceURL != null) {
            EndpointDefinition endpointDefinition = new EndpointDefinition();
            endpointDefinition.setAddress(serviceURL);
            if (SynapseConstants.FORMAT_SOAP11.equals(format)) {
                endpointDefinition.setForceSOAP11(true);
            } else if (SynapseConstants.FORMAT_SOAP12.equals(format)) {
                endpointDefinition.setForceSOAP12(true);
            } else {
                handleException("format value -\"" + format + "\" not yet implemented");
            }
            endpointDefinition.setFormat(format);

            // todo: determine this using wsdl and policy                                   

            return endpointDefinition;
View Full Code Here

TOP

Related Classes of org.apache.synapse.endpoints.utils.EndpointDefinition

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.