Author: mriou
Date: Wed Aug 20 11:37:29 2008
New Revision: 687414

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

Modified:
    
ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/INVOKE.java

Modified: 
ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/INVOKE.java
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/INVOKE.java?rev=687414&r1=687413&r2=687414&view=diff
==============================================================================
--- 
ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/INVOKE.java
 (original)
+++ 
ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/INVOKE.java
 Wed Aug 20 11:37:29 2008
@@ -95,13 +95,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 = getBpelRuntimeContext().invoke(
                     _scopeFrame.resolve(_oinvoke.partnerLink), 
_oinvoke.operation,
                     outboundMsg, invokeResponseChannel);
 
-                object(new 
InvokeResponseChannelListener(invokeResponseChannel) {
+                object(false, new 
InvokeResponseChannelListener(invokeResponseChannel) {
                     private static final long serialVerstmptmpionUID = 
4496880438819196765L;
 
                     public void onResponse() {
@@ -210,7 +210,7 @@
                     });
                     }
                 }));
-;
+                
             }
         } catch (FaultException fault) {
             __log.error(fault);


Reply via email to