This style sheet, jsptld_11_2_12.xsl, allows you to convert taglibrary descriptors (.tld's) from
version 1.1 format to 1.2. Run it with an XSL Transformer, such as:
java oracle.xml.parser.v2.oraxsl -v -w -debug your11.tld jsptld_11_2_12.xsl > new12.tld
or
java org.apache.xalan.xslt.Process -in your11.tld -xsl jsptld_11_2_12.xsl -out new12.tld
Put the xslt program in your classpath and make sure a copy of
web-jsptaglibrary_1_1.dtd is accessible, either in the current directory
if your .tld contains a local reference, or via the web if your
.tld's DOCTYPE is PUBLIC with the full url to the taglib dtd.
If you are behind a firewall supply your http proxy host and port,
for example:
java -Dhttp.proxyHost=myproxy.com -Dhttp.proxyPort=80 ....
|