I would like to know if it is possible to get the XML namespace prefix using the
Unmarshal
method in encoding/xml
.
For example, I have:
<application xmlns="http://wadl.dev.java.net/2009/02" xmlns:xs="http://www.w3.org/2001/XMLSchema">
</application>
I would like to know how to retrieve the xs
defining the prefix for XMLSchema, without having to use the Token
method.