Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
The Pass-Thru Servlet works very fine …The resulting HTML Page begins with the following attributes in the html Tag:But I would like, that it only starts withThe Stylesheet I use starts with:<xsl:stylesheet version=“1.0”xmlns:xsl=“http://www.w3.org/1999/XSL/Transform"<BR>xmlns:ino=“http://namespaces.softwareag.com/tamino/response2”<BR>xmlns:xql="http://metalab.unc.edu/xql/”>What must I do to reach this ?Thanks in advance.Ralf Schmidt
Try this<xsl:stylesheet version=“1.0”xmlns:xsl=“http://www.w3.org/1999/XSL/Transform"<BR>xmlns:ino=“http://namespaces.softwareag.com/tamino/response2”<BR>xmlns:xql=“http://metalab.unc.edu/xql/”<BR>exclude-result-prefixes="ino xql”>
Thanks for your help, Alexander.Now It works !