Examples of JobExecutionContext


Examples of org.apache.airavata.gfac.context.JobExecutionContext

            Object wsifMessageElement = new WSIFMessageElement(XMLUtil.stringToXmlElement3(inputMessage.toStringWithConsume()));
            this.notifier.invokingService(new WSIFMessageElement((XmlElement) wsifMessageElement));
            Properties configurationProperties = ServerSettings.getProperties();
      GFacConfiguration gFacConfiguration = GFacConfiguration.create(new File(resource.getPath()), airavataAPI, configurationProperties);

            JobExecutionContext jobExecutionContext = new JobExecutionContext(gFacConfiguration, serviceName);
            //Here we get only the contextheader information sent specific for this node
            //Add security context
            addSecurityContext(registeredHost,configurationProperties,jobExecutionContext);

            jobExecutionContext.setContextHeader(WorkflowContextHeaderBuilder.removeOtherSchedulingConfig(nodeID,configuration.getContextHeader()));


            jobExecutionContext.setProperty(Constants.PROP_WORKFLOW_NODE_ID,this.nodeID);
            jobExecutionContext.setProperty(Constants.PROP_TOPIC,this.configuration.getTopic());
            jobExecutionContext.setProperty(Constants.PROP_BROKER_URL,this.configuration.getBrokerURL().toASCIIString());
            jobExecutionContext.setProperty(Constants.PROP_WORKFLOW_INSTANCE_ID,this.configuration.getTopic());


            ApplicationContext applicationContext = new ApplicationContext();
            applicationContext.setApplicationDeploymentDescription(applicationDescription);
            applicationContext.setHostDescription(registeredHost);
            applicationContext.setServiceDescription(serviceDescription);

            jobExecutionContext.setApplicationContext(applicationContext);

            jobExecutionContext.setOutMessageContext(getOutParameters(serviceDescription));
            jobExecutionContext.setInMessageContext(new MessageContext(actualParameters));

            GFacAPI gfacAPI1 = new GFacAPI();
            gfacAPI1.submitJob(jobExecutionContext);

            OMFactory fac = OMAbstractFactory.getOMFactory();
            OMNamespace omNs = fac.createOMNamespace("http://ws.apache.org/axis2/xsd", "ns1");
            OMElement outputElement = fac.createOMElement("invokeResponse", omNs);
            MessageContext outMessageContext = jobExecutionContext.getOutMessageContext();
            Set<String> paramNames = outMessageContext.getParameters().keySet();
            for (String paramName : paramNames) {
                /*
                * Process Output
                */
 
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

                .toArray(new OutputParameterType[outputList.size()]);

        serv.getType().setInputParametersArray(inputParamList);
        serv.getType().setOutputParametersArray(outputParamList);

        jobExecutionContext = new JobExecutionContext(gFacConfiguration,serv.getType().getName());
        jobExecutionContext.setApplicationContext(applicationContext);
        /*
        * Host
        */
        applicationContext.setServiceDescription(serv);
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

    date = date.replaceAll(" ", "_");
    date = date.replaceAll(":", "_");

    remoteTempDir = scratchDir + File.separator + "BESJOB" + "_" + date
        + "_" + UUID.randomUUID();
    jobExecutionContext = new JobExecutionContext(getGFACConfig(),
        getServiceDesc("BES-APP-Service").getType().getName());
    jobExecutionContext.setApplicationContext(getApplicationContext());
    jobExecutionContext.setInMessageContext(getInMessageContext());
    jobExecutionContext.setOutMessageContext(getOutMessageContext());
    jobExecutionContext.addSecurityContext(
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

        //Setting input and output parameters to serviceDescriptor
        serv.getType().setInputParametersArray(inputParameters.toArray(new InputParameterType[]{}));
        serv.getType().setOutputParametersArray(outputParameters.toArray(new OutputParameterType[]{}));

        jobExecutionContext = new JobExecutionContext(gFacConfiguration,serv.getType().getName());
        jobExecutionContext.addSecurityContext(GSISecurityContext.GSI_SECURITY_CONTEXT, context);
        ApplicationContext applicationContext = new ApplicationContext();
        applicationContext.setHostDescription(host);
        applicationContext.setApplicationDeploymentDescription(appDesc);
        jobExecutionContext.setApplicationContext(applicationContext);
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

                .toArray(new OutputParameterType[outputList.size()]);

        serv.getType().setInputParametersArray(inputParamList);
        serv.getType().setOutputParametersArray(outputParamList);

        jobExecutionContext = new JobExecutionContext(gFacConfiguration,serv.getType().getName());
        ApplicationContext applicationContext = new ApplicationContext();
        jobExecutionContext.setApplicationContext(applicationContext);
        applicationContext.setServiceDescription(serv);
        applicationContext.setApplicationDeploymentDescription(ec2Desc);
        applicationContext.setHostDescription(host);
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

                .toArray(new OutputParameterType[outputList.size()]);

        serv.getType().setInputParametersArray(inputParamList);
        serv.getType().setOutputParametersArray(outputParamList);

        jobExecutionContext = new JobExecutionContext(gFacConfiguration,serv.getType().getName());
        jobExecutionContext.setApplicationContext(applicationContext);

        // Add security context
        jobExecutionContext.addSecurityContext(SSHSecurityContext.SSH_SECURITY_CONTEXT, getSecurityContext());
        /*
 
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

                .toArray(new OutputParameterType[outputList.size()]);

        serv.getType().setInputParametersArray(inputParamList);
        serv.getType().setOutputParametersArray(outputParamList);

        jobExecutionContext = new JobExecutionContext(gFacConfiguration,serv.getType().getName());
        // Adding security context
        jobExecutionContext.addSecurityContext(GSISecurityContext.GSI_SECURITY_CONTEXT, getSecurityContext());
        ApplicationContext applicationContext = new ApplicationContext();
        jobExecutionContext.setApplicationContext(applicationContext);
        applicationContext.setServiceDescription(serv);
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

  }

  @Before
  public void initJobContext() throws Exception {
    PropertyConfigurator.configure("src/test/resources/logging.properties");
    jobExecutionContext = new JobExecutionContext(getGFACConfig(), getServiceDesc().getType().getName());
    jobExecutionContext.setApplicationContext(getApplicationContext());
    jobExecutionContext.setInMessageContext(getInMessageContext());
    jobExecutionContext.setOutMessageContext(getOutMessageContext());
      jobExecutionContext.addSecurityContext(GSISecurityContext.GSI_SECURITY_CONTEXT, getSecurityContext());
         
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

    }

    @Before
    public void initJobContext() throws Exception {
        PropertyConfigurator.configure("src/test/resources/logging.properties");
        jobExecutionContext = new JobExecutionContext(getGFACConfig(), getServiceDesc().getType().getName());
        jobExecutionContext.setApplicationContext(getApplicationContext());
        jobExecutionContext.setInMessageContext(getInMessageContext());
        jobExecutionContext.setOutMessageContext(getOutMessageContext());
        jobExecutionContext.addSecurityContext(GSISecurityContext.GSI_SECURITY_CONTEXT, getSecurityContext());
View Full Code Here

Examples of org.apache.airavata.gfac.context.JobExecutionContext

    date = date.replaceAll(" ", "_");
    date = date.replaceAll(":", "_");

    remoteTempDir = scratchDir + File.separator + "BESJOB" + "_" + date
        + "_" + UUID.randomUUID();
    jobExecutionContext = new JobExecutionContext(getGFACConfig(),
        getServiceDesc("BES-APP-Service").getType().getName());
    jobExecutionContext.setApplicationContext(getApplicationContext());
    jobExecutionContext.setInMessageContext(getInMessageContext());
    jobExecutionContext.setOutMessageContext(getOutMessageContext());
    jobExecutionContext.addSecurityContext(
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.