You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by gn...@apache.org on 2007/05/02 16:48:15 UTC

svn commit: r534489 - /incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java

Author: gnodet
Date: Wed May  2 07:48:14 2007
New Revision: 534489

URL: http://svn.apache.org/viewvc?view=rev&rev=534489
Log:
InOnly exchanges are not sent back with a DONE status

Modified:
    incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java

Modified: incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java?view=diff&rev=534489&r1=534488&r2=534489
==============================================================================
--- incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java (original)
+++ incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java Wed May  2 07:48:14 2007
@@ -139,6 +139,7 @@
                     if (jbiMex.getStatus() == ExchangeStatus.ACTIVE)
                         jbiMex.setStatus(ExchangeStatus.DONE);
                 }
+                _ode.getChannel().send(jbiMex);
             }
         } else if (jbiMex.getPattern().equals(org.apache.ode.jbi.MessageExchangePattern.IN_OUT)) {
             boolean success = false;