Hi, I am trying to understand the management of composite files in java and C++. In Java, I don't see the usage of "implementation.composite". in C++, i could not get around getting the example to work without the usage of this. from documentation, it looked like an optional method. for example, Why is the following configuration not working in C++, setenv TUSCANY_SCACPP_COMPONENT CalculatorComponent and the composite file looks like below, <composite xmlns="http://www.osoa.org/xmlns/sca/1.0" name="sample.calculator">
<component name="CalculatorComponent"> <implementation.cpp library="Calculator" header="CalculatorImpl.h"/> <reference name="divideService">DivideComponent/DivideService</reference> </component> <component name="DivideComponent"> <implementation.cpp library="Calculator" header="DivideImpl.h"/> </component> </composite> Thanks, Shiva
