I have some very basic XML:
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>One</string>
<string>Two</string>
</ArrayOfString>
How can I translate this into:
<ul>
<li>One</li>
<li>Two</li>
</ul>
Using XLST?
Previously I've worked with a:vlaue but these are just strings?