DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13874>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13874

xsltc unable to generate translates fror a style sheet which is calling a java class

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|xsltc unable to generate    |xsltc unable to generate
                   |translates fror a style     |translates fror a style
                   |sheet which is calling a    |sheet which is calling a
                   |java class                  |java class



------- Additional Comments From [EMAIL PROTECTED]  2002-10-23 15:41 -------
Here's a much simpler version of the stylesheet that still causes XSLTC 
to give the error message.

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
xmlns:lxslt="http://xml.apache.org/xslt";
xmlns:opus-dbaccess="com.qwest.opus.common.xalan.extensions.dbAccess"
extension-element-prefixes="opus-dbaccess"
exclude-result-prefixes="opus-dbaccess">

  <xsl:output method="xml" indent="yes" />
  <lxslt:component prefix="opus-dbaccess">
    <lxslt:script lang="javaclass"
src="xalan://com.qwest.opus.common.xalan.extension.dbAccess"/>
  </lxslt:component>
  <xsl:template match="/">
        <xsl:apply-templates/>
   </xsl:template>
   <xsl:template match="CONSOLIDATE">
      <opus-dbaccess:init providerURLString="t3://sucad251.qwest.net:18310"/>
   </xsl:template>
</xsl:stylesheet>

Reply via email to