I just ran through the XML binding Bike Trails tutorial about a hundred times.
I can get that to work just fine. But when I try to work with my XML file, it
keeps falling apart. I just don't get it! I've been working on it for 2 days
and it's still not working right.

For one, the bindings are not showing up right. I have 2 combo boxes and then
a final one I'd like to use to list the stores. Here's a link to basically what
I'm trying to do:
[url]http://www.thinkseed.com/test/stores.html[/url]

My bindings keep falling apart. I get null values all the time for the second
drop box that's supposed to house the States (the one on the site is a
fluke...I accidentally had the <store> node on a separate line instead of
nested in the <state> node. No idea why that one sort of worked.)

Here's an example of the XML code:




<?xml version="1.0" encoding="iso-8859-1"?>

<countries>
<country name="UNITED STATES">
<state>ALABAMA<store>
Test</store>
</state>
<state>ARIZONA</state>
<state>CALIFORNIA</state>
<state>COLORADO</state>
<state>CONNETICUT</state>
<state>DELAWARE</state>
<state>DISTRICT OF COLUMBIA</state>
<state>FLORIDA</state>
<state>GEORGIA</state>
<state>ILLINOIS</state>
<state>INDIANA</state>
<state>LOUISIANA</state>
<state>MARYLAND</state>
<state>MASSACHUSETTS</state>
<state>MICHIGAN</state>
<state>MINNESOTA</state>
<state>MISSOURI</state>
<state>NORTH CAROLINA</state>
<state>NEVADA</state>
<state>NEW JERSEY</state>
<state>NEW YORK</state>
<state>OHIO</state>
<state>OREGON</state>
<state>PENNSYLVANIA</state>
<state>RHODE ISLAND</state>
<state>SOUTH CAROLINA</state>
<state>TEXAS</state>
<state>UTAH</state>
<state>VIRGINIA</state>
<state>WASHINGTON</state>
<state>WISCONSIN</state>
</country>

<country name="CANADA">
</country>

<country name="ENGLAND">
</country>

<country name="GERMANY">
</country>

<country name="ITALY">
</country>

<country name="JAPAN">
</country>

<country name="KOREA">
</country>

</countries>