Package org.jitterbit.integration.client.server

Examples of org.jitterbit.integration.client.server.IntegrationServerException


            }
            callback.objectsRetrieved(containers, quotes);
        } catch (RemoteException ex) {
            callback.caught(convert(ex));
        } catch (IntegrationServerException ex) {
            callback.caught(new IntegrationServerException("Server exception: " + ex.getMessage(), ex));
        }
    }
View Full Code Here


            DatabaseObjectContainer[] containers = convertObjectInfo(info);
            callback.tableInfoRetrieved(containers);
        } catch (RemoteException ex) {
            callback.caught(convert(ex));
        } catch (IntegrationServerException ex) {
            callback.caught(new IntegrationServerException("Server exception: " + ex.getMessage(), ex));
        }
    }
View Full Code Here

                            user, password, connParams, db.getDriverName(), toString(sourceGuid), toString(targetGuid));
            callback.connected(FROM_WS_QUOTES.apply(quotes));
        } catch (RemoteException ex) {
            callback.caught(convert(ex));
        } catch (IntegrationServerException ex) {
            callback.caught(new IntegrationServerException("Server exception: " + ex.getMessage(), ex));
        }
    }
View Full Code Here

            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

    @Override
    public void downloadPluginManifests(PipelinePluginManifestDownloadCallback callback) {
        Random r = new Random();
        if (r.nextInt(100) < 1) {
            callback.caught(new IntegrationServerException("This is a mock error."));
        } else {
            try {
                PluginAsXml[] xml = { loadMockPluginDescription() };
                ServerInfo server = getMockServer();
                callback.pluginInfoDownloaded(server, xml);
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.server.IntegrationServerException

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.