Package org.jitterbit.integration.client.server

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


            serverName = getConfiguration().getServerName();
            serverId = getConfiguration().getServerId();
      locator.setkonga_webservice_infoproviderEndpointAddress(sb.toString());
      return locator.getkonga_webservice_infoprovider();
    } catch (ServiceException e) {
      throw new IntegrationServerException("Failed to call web service: " + e.getMessage(), e);
    }
  }
View Full Code Here


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

            // the corresponding endpoint doesn't exist on the server, and the
            // webservice call fails with a (for the user) cryptic message.
            if ("Webservice failed".equals(e.getMessage())) {
                String msg = e.getMessage() + ". "
                                + WebServiceMessages.getMessage("Authenticate.UnsupportedServerVersion");
                IntegrationServerException e2 = new IntegrationServerException(msg, e);
                getConfiguration().throwException(url.toString(), e2);
            } else {
                getConfiguration().throwException(url.toString(), e);
            }
    } catch (ServiceException e) {
View Full Code Here

                return null;
            }
            locator.setkonga_file_managementEndpointAddress(sb.toString());
            return locator.getkonga_file_management();
        } catch (ServiceException e) {
            throw new IntegrationServerException("Failed to call web service: " + e.getMessage(), e);
        }
    }
View Full Code Here

            callback.fileWasDownloaded(server, downloadedFile.getPath(), downloadedFile
                            .getZippedBase64EncodedContents(), dependencies);
        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (IntegrationServerException e) {
            callback.caught(new IntegrationServerException("Server exception: " + e.getMessage(), e));
        }
    }
View Full Code Here

                return null;
            }
            locator.setkonga_xml_infoproviderEndpointAddress(sb.toString());
            return locator.getkonga_xml_infoprovider();
        } catch (ServiceException e) {
            throw new IntegrationServerException("Failed to call web service: " + e.getMessage(), e);
        }
    }
View Full Code Here

            callback.structureFilesRetrieved(serverInfo, returnFolders);
        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (IntegrationServerException e) {
            callback.caught(new IntegrationServerException("Server exception: " + e.getMessage(), e));
        }
    }
View Full Code Here

            callback.rootNamesRetrieved(xmlInfo.getPossibleRootNames(getConfiguration().getUserName(),
                            getConfiguration().getPassword(), structureFile));
        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (IntegrationServerException e) {
            callback.caught(new IntegrationServerException("Server exception: " + e.getMessage(), e));
        }
    }
View Full Code Here

            callback.fileWasUploaded(result);
        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (IntegrationServerException e) {
            callback.caught(new IntegrationServerException("WebService failed. " + e.getMessage(), e));
        } catch (IOException e) {
            callback.caught(new IntegrationServerException("Failed to read from input file. " + e.getMessage(), e));
        }
    }
View Full Code Here

            List<JdbcDriverDescriptor> drivers = convertDriverInfo(wsData);
            callback.driversRetrieved(drivers.toArray(new JdbcDriverDescriptor[drivers.size()]), serverInfo);
        } catch (RemoteException ex) {
            callback.caught(convert(ex));
        } catch (IntegrationServerException ex) {
            callback.caught(new IntegrationServerException("Server exception: " + ex.getMessage(), ex));
        }
    }
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.