Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Java-SCA-1.2
-
None
-
Patch Available
Description
If the composite has a cyclic include,tuscany will throw an OutOfMemory exception when parsing the include.
Demo1Composite.composite
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
targetNamespace="http://sample"
xmlns:sample="http://sample"
name="Demo1Composite"
<include name="sample:Demo2Composite"/>
</composite>
Demo2Composite.composite
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
targetNamespace="http://sample"
xmlns:sample="http://sample"
name="Demo2Composite">
<include name="sample:Demo1Composite"/>
</composite>