Return-Path: X-Original-To: apmail-incubator-airavata-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-airavata-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 438B392EF for ; Wed, 5 Oct 2011 19:59:47 +0000 (UTC) Received: (qmail 58164 invoked by uid 500); 5 Oct 2011 18:59:47 -0000 Delivered-To: apmail-incubator-airavata-commits-archive@incubator.apache.org Received: (qmail 58123 invoked by uid 500); 5 Oct 2011 18:59:47 -0000 Mailing-List: contact airavata-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: airavata-dev@incubator.apache.org Delivered-To: mailing list airavata-commits@incubator.apache.org Received: (qmail 58116 invoked by uid 99); 5 Oct 2011 18:59:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Oct 2011 18:59:47 +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; Wed, 05 Oct 2011 18:59:46 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id DC0CE23889FA; Wed, 5 Oct 2011 18:59:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1179383 - /incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/lead/NotificationHandler.java Date: Wed, 05 Oct 2011 18:59:25 -0000 To: airavata-commits@incubator.apache.org From: patanachai@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111005185925.DC0CE23889FA@eris.apache.org> Author: patanachai Date: Wed Oct 5 18:59:25 2011 New Revision: 1179383 URL: http://svn.apache.org/viewvc?rev=1179383&view=rev Log: Fix address url error from Axis2 EPR Modified: incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/lead/NotificationHandler.java Modified: incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/lead/NotificationHandler.java URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/lead/NotificationHandler.java?rev=1179383&r1=1179382&r2=1179383&view=diff ============================================================================== --- incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/lead/NotificationHandler.java (original) +++ incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/lead/NotificationHandler.java Wed Oct 5 18:59:25 2011 @@ -89,7 +89,7 @@ public class NotificationHandler extends Integer myTimestep = null; EndpointReference epr = new EndpointReference(leadContext.getEventSink().getAddress().toString()); this.invocationEntity = this.notifier.createEntity(myWorkflowID, myServiceID, myNodeID, myTimestep); - this.context = this.notifier.createTrackingContext(new Properties(),epr.toString(),myWorkflowID, + this.context = this.notifier.createTrackingContext(new Properties(),epr.getAddress().toString(),myWorkflowID, myServiceID,myNodeID,myTimestep); }