So In one of my xslt files, I see
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:myxsl="urn:schemas-microsoft-com:xslt"
xmlns:xsl2="http://www.w3.org/TR/xslt20/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:java="http://xml.apache.org/xalan/java"
xmlns:mine="com.my.example.impl.BaseImpl"
xmlns:m="com.my.example.util.CustomXsltHashMap"
xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"
exclude-result-prefixes="myxsl java s mine m xs xsl2">
Can someone tell me what each line here means? I will really appreciate a line by line interpretation of these namespaces and their uses?
I am using xslt transformation from within the Java services somehow. (not my code).
Thanks