Definition XML

There is an IOC component definitions XML file. And in BTT Web2.0 On-Demand Workplace sample, it is named as Component.xml, which describes the component information. Its content is shown as below:
<?xml version="1.0" encoding="UTF-8"?>
<Components xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://btt.cn.ibm.com/61/Web20" xsi:schemaLocation="http://btt.cn.ibm.com/61/Web20 ../BTTWeb20/schema/Component.xsd ">
	<component name="ComponentBase" class="BTTComponentBase"/>
	<component name="Page" class="BTTPage" scope="window" extend="ComponentBase"></component>
	<component name="Tab" class="BTTTab"></component>
	<component name="Column" class="BTTColumn"></component>
	<component name="Row" class="BTTRow"></component>
  ...
</Components>

The<component> entry represents a registered component, and it has several attributes which describe the definition information of the corresponding component. The use of each item and its attributes are described in Component.xml. Refer to it for details.