Package org.jitterbit.integration.server.implementation.webservice.activity.client

Examples of org.jitterbit.integration.server.implementation.webservice.activity.client.ActivityInfoProviderServiceLocator


    private static final String WS_NAME = "konga_activity_infoprovider";

    protected String userName, password;

    protected final org.jitterbit.integration.server.implementation.webservice.activity.client.ActivityInfoProvider getServerProxy(ServerCallback callback) {
        ActivityInfoProviderServiceLocator locator = new ActivityInfoProviderServiceLocator();
        StringBuilder sb = new StringBuilder();
        if (getConfiguration().configureWebservice(locator, WS_NAME, sb, callback)) {
            try {
                locator.setkonga_activity_infoproviderEndpointAddress(sb.toString());
                userName = getConfiguration().getUserName();
                password = getConfiguration().getPassword();
                return locator.getkonga_activity_infoprovider();
            } catch (ServiceException ex) {
                callback.caught(new IntegrationServerException("Failed to call webservice: " + ex.getMessage(), ex));
            }
        }
        return null;
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.server.implementation.webservice.activity.client.ActivityInfoProviderServiceLocator

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.