Thanks dazjorz. I will try to do some testing, but most of my free time this weekend is up for now. I also agree with Zaroba that I don't want to get this too complicated as I already have ~10 hours in the project and my download count only shows 1 download right now. There are two xml files each with a different format as multiple types exist:
Xml File 1 :
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfFailedCombination xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="
http://www.w3.org/2001/XMLSchema">
<FailedCombination>
<AttemptedItems>
<Item xsi:type="SimpleItem">
<Name>Water</Name>
</Item>
<Item xsi:type="ComplexItem">
<Name>Twig Hat</Name>
<RequiredItems>
<Item xsi:type="SimpleItem">
<Name>Twigs</Name>
</Item>
<Item xsi:type="SimpleItem">
<Name>Twigs</Name>
</Item>
</RequiredItems>
</Item>
</AttemptedItems>
</FailedCombination>
</ArrayOfFailedCombination>
Xml File 2:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfItem xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="
http://www.w3.org/2001/XMLSchema">
<Item xsi:type="SimpleItem">
<Name>Water</Name>
</Item>
<Item xsi:type="ComplexItem">
<Name>Black Sludge</Name>
<RequiredItems>
<Item xsi:type="ComplexItem">
<Name>Fire</Name>
<RequiredItems>
<Item xsi:type="SimpleItem">
<Name>Black Rocks</Name>
</Item>
<Item xsi:type="SimpleItem">
<Name>Black Rocks</Name>
</Item>
<Item xsi:type="SimpleItem">
<Name>Twigs</Name>
</Item>
</RequiredItems>
</Item>
<Item xsi:type="SimpleItem">
<Name>Black Rocks</Name>
</Item>
</RequiredItems>
</Item>
</ArrayOfItem>