I have this XML file:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPasswordSettings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <PasswordSettings>
        <CustomerRef>c</CustomerRef>
        <Node>n</Node>
        <Name>na</Name>
        <Login>l</Login>
        <Password>ITra+Map1RxklmcSY5yOo9wU9tUV0S4C4qwUv4p2ZFS3L8ByJYXmA9YjswlSTjQZXUJAkV3Z6mhY8OF5/dFOLNAZZRk2i2IOzrVOWSDfdpB8/Vm7PPF0ucSHILHNWpT8</Password>
        <FileType>ft</FileType>
    </PasswordSettings>
    <PasswordSettings>
        <CustomerRef>c</CustomerRef>
        <Node>n</Node>
        <Name>na</Name>
        <Login>l</Login>
        <Password>ITra+Map1RxklmcSY5yOo9wU9tUV0S4C4qwUv4p2ZFS3L8ByJYXmA9YjswlSTjQZXUJAkV3Z6mhY8OF5/dFOLNAZZRk2i2IOzrVOWSDfdpB8/Vm7PPF0ucSHILHNWpT8</Password>
        <FileType>ft</FileType>
    </PasswordSettings>
</ArrayOfPasswordSettings>
As you see there are multiple <PasswordSettings> which is a list of multiple items like name, login and password. Can I iterate the  <PasswordSettings> in some foreach  <PasswordSettings>  loop and get the elements?
 
    