Help for this page

Select Code to Download


  1. or download this
    <Foo xmlns="http://my.namespaces.com/foo">...</Foo>
    
  2. or download this
    <root xmlns:f="http://my.namespaces.com/foo">...
     <f:Foo>...</f:Foo>
    </root>
    
  3. or download this
    <root xmlns="http://my.namespaces.com/foo">...
     <Foo>...</Foo>
    </root>
    
  4. or download this
    =head1 Namespace support
    
    ...
    
    If the XML references a namespace not present in the map you will get 
    +a warning 
    and the alias used for that namespace will be left intact!