Examples of IntegrationServerException


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

    public final LoginConfiguration getLoginConfiguration() {
        return loginConfiguration;
    }

    public String throwException(String url, Exception ex) throws IntegrationServerException {
        throw new IntegrationServerException(ex.getMessage() + "\r\n\r\nThis error occurred when calling " + url, ex);
    }
View Full Code Here

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

            }
            checkDebuggingResult(debugSession, clientSideResult, callback);
        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (ServiceException e) {
            callback.caught(new IntegrationServerException("Failed to call webservice: " + e.getMessage(), e));
        } catch (Exception ex) {
            callback.caught(ex);
        }
    }
View Full Code Here

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

            userName = getConfiguration().getUserName();
            password = getConfiguration().getPassword();
            locator.setkonga_project_administrationEndpointAddress(sb.toString());
            return locator.getkonga_project_administration();
        } catch (ServiceException e) {
            throw new IntegrationServerException("Failed to call web service: " + e.getMessage(), e); //$NON-NLS-1$
        }
    }
View Full Code Here

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

        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (IOException e) {
            callback.caught(e);
        } catch (ServiceException e) {
            callback.caught(new IntegrationServerException("Failed to call webservice: " + e.getMessage(), e));
        }
    }
View Full Code Here

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

                        return Versions.CURRENT.toString();
                    }
                }
            };
        }
        throw new IntegrationServerException("You can only login to the " + SERVER_NAME + " server");
    }
View Full Code Here

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

                "was made to a Jitterbit server.";
        if (token == null) {
            return true;
        }
        if (!getServerId().equals(token.getServerId())) {
            callback.caught(new IntegrationServerException("The source data currently loaded into this Transformation " +
                    "comes from a different server than the one you are currently logged into. " +
                    "Please log in to the server \"" + token.getServerName() + "\" and try again!"));
            return false;
        }
        return true;
View Full Code Here

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

            );
            checkDebuggingResult(debugSession, testResult, callback);
        } catch (RemoteException ex) {
            callback.caught(convert(ex));
        } catch (ServiceException ex) {
            callback.caught(new IntegrationServerException("Failed to call webservice: " + ex.getMessage(), ex));
        } catch (Exception ex) {
            callback.caught(ex);
        }
    }
View Full Code Here

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

            userAdmin.setUsersAndGroups(userName, password, usersAndGroups);
            callback.doneSettingUsersAndGroups();
        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (IntegrationServerException e) {
            callback.caught(new IntegrationServerException("Server exception: " + e.getMessage(), e));
        }
    }
View Full Code Here

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

            usersAndGroups = userAdmin.getUsersAndGroupsWithOptions(userName, password, options);
        } catch (RemoteException e) {
            callback.caught(convert(e));
            return;
        } catch (IntegrationServerException e) {
            callback.caught(new IntegrationServerException("Server exception: " + e.getMessage(), e));
            return;
        }
        List<User> users = createUsers(usersAndGroups);
        List<Group> groups = createGroups(usersAndGroups);
        addGroupMembers(usersAndGroups, users, groups);
View Full Code Here

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

           
            callback.gotUserInfo( getIntegrationUser(rawUser) );
        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (IntegrationServerException e) {
            callback.caught(new IntegrationServerException("Server exception: " + e.getMessage(), e));
        }
    }
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.