pass-thru: change attributes in the resulting html-tag

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 with

The 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 !