Return-Path: X-Original-To: apmail-airavata-commits-archive@www.apache.org Delivered-To: apmail-airavata-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A546DD57A for ; Fri, 9 Nov 2012 22:04:33 +0000 (UTC) Received: (qmail 30517 invoked by uid 500); 9 Nov 2012 22:04:33 -0000 Delivered-To: apmail-airavata-commits-archive@airavata.apache.org Received: (qmail 30486 invoked by uid 500); 9 Nov 2012 22:04:33 -0000 Mailing-List: contact commits-help@airavata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airavata.apache.org Delivered-To: mailing list commits@airavata.apache.org Received: (qmail 30479 invoked by uid 99); 9 Nov 2012 22:04:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Nov 2012 22:04:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Nov 2012 22:04:31 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 032C523888E3 for ; Fri, 9 Nov 2012 22:04:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1407667 - /airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorSkeleton.java Date: Fri, 09 Nov 2012 22:04:09 -0000 To: commits@airavata.apache.org From: lahiru@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121109220410.032C523888E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: lahiru Date: Fri Nov 9 22:04:09 2012 New Revision: 1407667 URL: http://svn.apache.org/viewvc?rev=1407667&view=rev Log: fixing issue during workflow run. Modified: airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorSkeleton.java Modified: airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorSkeleton.java URL: http://svn.apache.org/viewvc/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorSkeleton.java?rev=1407667&r1=1407666&r2=1407667&view=diff ============================================================================== --- airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorSkeleton.java (original) +++ airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorSkeleton.java Fri Nov 9 22:04:09 2012 @@ -270,15 +270,15 @@ public class WorkflowInterpretorSkeleton ContextHeaderDocument parse = null; try { parse = ContextHeaderDocument.Factory.parse(workflowContext.toStringWithConsume()); - String msgBox = parse.getContextHeader().getWorkflowMonitoringContext().getEventPublishEpr(); + String msgBox = parse.getContextHeader().getWorkflowMonitoringContext().getMsgBoxEpr(); if(msgBox == null || "".equals(msgBox)){ msgBox = jcrComponentRegistry.getRegistry().getMessageBoxURI().toASCIIString(); } - String msgBroker = parse.getContextHeader().getSoaServiceEprs().getGfacUrl(); + String msgBroker = parse.getContextHeader().getWorkflowMonitoringContext().getEventPublishEpr(); if(msgBroker == null || "".equals(msgBroker)){ msgBroker = jcrComponentRegistry.getRegistry().getEventingServiceURI().toASCIIString(); } - String gfac = parse.getContextHeader().getWorkflowMonitoringContext().getMsgBoxEpr(); + String gfac = parse.getContextHeader().getSoaServiceEprs().getGfacUrl(); if(gfac == null || "".equals(gfac)){ gfac = jcrComponentRegistry.getRegistry().getGFacURIs().get(0).toString(); }