summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-07-29 14:49:12 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-07-29 14:49:12 +0000
commite09d8a72ae12bae070396339963a6331b4225bdd (patch)
treedeabb04adfc4badf97448d2714be68f97b4ef751 /sca-java-1.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java
parent3005c5b391e9884652de249e82327b24660cd3b8 (diff)
TUSCANY-3639 - ensure that the service wire is created at the same time as the binding wire is created
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@980457 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/sca-java-1.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java b/sca-java-1.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java
index e31186ed35..aefaaec90d 100644
--- a/sca-java-1.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java
+++ b/sca-java-1.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java
@@ -131,6 +131,12 @@ public class RuntimeWireImpl implements RuntimeWire {
initServiceBindingInvocationChains();
}
}
+
+ // Init the operation invocation chains now. We know they will
+ // be needed as well as the binding invocation chain and this
+ // makes the wire processors run
+ getInvocationChains();
+
return bindingInvocationChain;
}