summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/core/src
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-07-29 15:34:59 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-07-29 15:34:59 +0000
commitb3c36170d3ea69674fc3e892fea0bbc2cd300ceb (patch)
tree2a3e9c980f5844b82fed4e3d3f6fa04d706e9bdc /sca-java-2.x/trunk/modules/core/src
parente09d8a72ae12bae070396339963a6331b4225bdd (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@980474 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules/core/src')
-rw-r--r--sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java
index fe9e437650..e294f9c270 100644
--- a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java
+++ b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java
@@ -212,6 +212,12 @@ public class RuntimeEndpointImpl extends EndpointImpl implements RuntimeEndpoint
bindingInvocationChain = new InvocationChainImpl(null, null, false, phaseManager);
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;
}