You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Ch...@plaut.at on 2000/11/06 17:03:05 UTC

Problem with &

Hello!

I am using a servlet to parse this stylesheet:

     <xsl:text>http://localhost/OutMB/servlet/XMLPARSING?QUERY=1</xsl:text>

          <xsl:text disable-output-escaping="yes">&lt;&amp;&gt;</xsl:text>
          </xsl:attribute>
          <xsl:attribute name="target">_self</xsl:attribute>
          <xsl:value-of select="./SystemID"/>

With the xsl:text and the attribute I try to generate a servlet request
with parameters.  The
Output I get is the following:

            <tr class="Tabellenzeile">
                <td>2000</td><td>03</td><td><A href
="http://localhost/OutMB/servlet/XMLPARSING?QUERY=1<&amp;>" target="
_self">S30</A></td>
            </tr>

After the query Parameter you can look at the resolved &lt and &gt but the
&amp is
not resolved.

Any Ideas?

Thanks a lot

  Christian Knell