Examples of ExecutionProblem


Examples of org.globus.workspace.client_core.ExecutionProblem

                        } else {
                            err = CommonUtil.
                                    genericExceptionMessageWrapper(cause);
                        }
                    }
                    throw new ExecutionProblem(err, e);
                }
            }
        }

        if (this.pr.enabled() && this.pr.useThis()) {
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

            if (this.pr.enabled() && this.pr.useThis()) {
                this.pr.infoln(PrCodes.CREATE__EXTRALINES, "");
            }

        } catch (InterruptedException e) {
            throw new ExecutionProblem(e.getMessage(), e);
        }

        try {
            this.reapStateWaiter(exitState);
            this.reapTerminationWaiter();
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

        try {
            this._runImpl();
        } catch (BaseFaultType e) {
            final String err = CommonStrings.faultStringOrCommonCause(e);
            throw new ExecutionProblem(err, e);
        }
    }
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

            final Workspace workspace =
                    ((RPQueryInstance)this.instanceAction).queryOnce();
            this.print(workspace);
        } catch (BaseFaultType e) {
            final String err = CommonStrings.faultStringOrCommonCause(e);
            throw new ExecutionProblem(err, e);
        }
    }
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

                        "there is no port type to call done/launch with");
            }
        } catch (BaseFaultType e) {
            final String err =
                    CommonStrings.faultStringOrCommonCause(e, "context");
            throw new ExecutionProblem(err, e);
        }

        if (this.pr.enabled()) {
            if (this.pr.useThis()) {
                final String msg = " done.";
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

    // -------------------------------------------------------------------------

    private void _runImpl() throws ParameterProblem, ExecutionProblem, ExitNow {

        if (this.ctx_create == null) {
            throw new ExecutionProblem("run called w/o validate (?)");
        }

        if (this.dryrun) {

            if (this.pr.enabled()) {
                final String msg = "Dryrun, done.";
                if (this.pr.useThis()) {
                    this.pr.infoln(PrCodes.CTXMONITOR__DRYRUN, msg);
                } else if (this.pr.useLogging()) {
                    logger.info(msg);
                }
            }

            return; // *** EARLY RETURN ***
        }

        CreateContextResponse_Type resp;
        try {
            resp = this.ctx_create.create();
        } catch (NimbusContextualizationFault e) {
            final String err =
                    CommonStrings.faultStringOrCommonCause(e, "context broker");
            throw new ExecutionProblem(err, e);
        }

        this.writeContextEprPossibly(resp.getContextEPR());
        this.writeBrokerContactPossibly(resp.getContact());
    }
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

                }
            }

        } catch (Exception e) {
            final String err = "Problem writing EPR to file: ";
            throw new ExecutionProblem(err + e.getMessage(), e);
        }
    }
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

                }
            }

        } catch (Exception e) {
            final String err = "Problem writing EPR to file: ";
            throw new ExecutionProblem(err + e.getMessage(), e);
        }
    }
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

       
        try {
            this._runImpl();
        } catch (BaseFaultType e) {
            final String err = CommonStrings.faultStringOrCommonCause(e);
            throw new ExecutionProblem(err, e);
        }
    }
View Full Code Here

Examples of org.globus.workspace.client_core.ExecutionProblem

        catch(Exception ex)
        {
            hash = null;
        }
        if (hash == null) {
            throw new ExecutionProblem("Could not obtain hash of current " +
                        "credential to generate directory name");
        }

        this.remoteUserBaseDir =
                CloudClientUtil.destUserBaseDir(this.args.getTargetBaseDirectory(),
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.