You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2008/08/20 20:38:00 UTC

svn commit: r687415 - /ode/branches/rtver/runtime-repo/src/main/java/org/apache/ode/bpel/rtrep/v2/INVOKE.java

Author: mriou
Date: Wed Aug 20 11:38:00 2008
New Revision: 687415

URL: http://svn.apache.org/viewvc?rev=687415&view=rev
Log:
ODE-263 onAlarm is trigered only after completed activity (forgot something).

Modified:
    ode/branches/rtver/runtime-repo/src/main/java/org/apache/ode/bpel/rtrep/v2/INVOKE.java

Modified: ode/branches/rtver/runtime-repo/src/main/java/org/apache/ode/bpel/rtrep/v2/INVOKE.java
URL: http://svn.apache.org/viewvc/ode/branches/rtver/runtime-repo/src/main/java/org/apache/ode/bpel/rtrep/v2/INVOKE.java?rev=687415&r1=687414&r2=687415&view=diff
==============================================================================
--- ode/branches/rtver/runtime-repo/src/main/java/org/apache/ode/bpel/rtrep/v2/INVOKE.java (original)
+++ ode/branches/rtver/runtime-repo/src/main/java/org/apache/ode/bpel/rtrep/v2/INVOKE.java Wed Aug 20 11:38:00 2008
@@ -92,13 +92,13 @@
 
             } else /* two-way */{
                 final VariableInstance outputVar = _scopeFrame.resolve(_oinvoke.outputVar);
-                InvokeResponseChannel invokeResponseChannel = newChannel(InvokeResponseChannel.class);
+                final InvokeResponseChannel invokeResponseChannel = newChannel(InvokeResponseChannel.class);
 
                 final String mexId = getBpelRuntime().invoke(invokeResponseChannel.export(),
                     _scopeFrame.resolve(_oinvoke.partnerLink), _oinvoke.operation,
                     outboundMsg, invokeResponseChannel);
 
-                object(new InvokeResponseChannelListener(invokeResponseChannel) {
+                object(false, new InvokeResponseChannelListener(invokeResponseChannel) {
                     private static final long serialVersionUID = 4496880438819196765L;
 
                     public void onResponse() {