>  Andreas V�lker wrote...
> 
> Hi,
> I am using Xerces2 Java Parser 2.0.0 and try to load and validate a XSL file 
like this ... 
> 
>   <?xml version="1.0" encoding="iso-8859-1"?> 
>   <xsl:stylesheet version="1.0"
>                         xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>     
>            
>     <xsl:output method="xml" indent="yes"/>
>  
>     <xsl:template match="@*|node()">
>       <xsl:copy>
>         <xsl:apply-templates select="@*|node()"/>
>       </xsl:copy>
>     </xsl:template>
> 
>   </xsl:stylesheet>
> 
> 
<snip/>
> 
> 
> and get errors like this
> 
<snip/>

You need to supply a schema file for the namespace 
"http://www.w3.org/1999/XSL/Transform"; against which validation can be done.

Cheers,
Rahul.

> 
> thanks



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to