Examples of WebServiceOperationData


Examples of org.jitterbit.integration.server.implementation.webservice.interchange.webservice.client.WebServiceOperationData

            if (provider == null) {
                // The callback has already been notified.
                return;
            }

            WebServiceOperationData operationData = createOperationData(opInfo);
            WebServiceJtr jtrs = provider.getInputAndOutputJTR(user, password,
                            operationData);
            if (Thread.interrupted()) {
                callback.cancelled();
                return;
View Full Code Here

Examples of org.jitterbit.integration.server.implementation.webservice.interchange.webservice.client.WebServiceOperationData

                            );
        }
  }

    private WebServiceOperationData createOperationData(WebServiceOperationInfo opInfo) {
        WebServiceOperationData operationData = new WebServiceOperationData();
        operationData.setBindingName(opInfo.getProperty(WebServiceOperationInfo.BINDING_NAME));
        String tmp = opInfo.getProperty(WebServiceOperationInfo.SOAP_BODY_USE);
        operationData.setBodyUse((tmp != null) ? tmp : "");
        operationData.setWsdlLocator(opInfo.getProperty(WebServiceOperationInfo.WSDL_LOCATOR));
        operationData.setOperationName(opInfo.getProperty(WebServiceOperationInfo.OPERATION_NAME));
        tmp = opInfo.getProperty(WebServiceOperationInfo.SOAP_STYLE);
        operationData.setSoapStyle((tmp != null) ? tmp : "");
        tmp = opInfo.getProperty(WebServiceOperationInfo.INPUT_NAME);
        operationData.setOperationInputName((tmp != null) ? tmp : "");
        tmp = opInfo.getProperty(WebServiceOperationInfo.OUTPUT_NAME);
        operationData.setOperationOutputName((tmp != null) ? tmp : "");
        return operationData;
    }
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.