Package org.jitterbit.integration.server.implementation.webservice.interchange.db.client

Examples of org.jitterbit.integration.server.implementation.webservice.interchange.db.client.JdbcInfoProviderServiceLocator


        if (Thread.currentThread().isInterrupted()) {
            callback.cancelled();
            return null;
        }
        try {
            JdbcInfoProviderServiceLocator locator = new JdbcInfoProviderServiceLocator();
            StringBuilder sb = new StringBuilder();
            if (!getConfiguration().configureWebservice(locator, SERVICE_NAME, sb, callback)) {
                // The callback has already been notified, so we can just return here.
                return null;
            }
            user = getConfiguration().getUserName();
            password = getConfiguration().getPassword();
            locator.setkonga_jdbc_infoproviderEndpointAddress(sb.toString());
            return locator.getkonga_jdbc_infoprovider();
        } catch (ServiceException ex) {
            throw new IntegrationServerException("Failed to call web service: " + ex.getMessage(), ex);
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.server.implementation.webservice.interchange.db.client.JdbcInfoProviderServiceLocator

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.