You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-users@xalan.apache.org by Subbarao Damacharla <da...@yahoo.com> on 2013/04/26 20:19:12 UTC

Regarding this URL: http://xml.apache.org/xalan

Hi  xalan-j-users,

As I got the below URL is no longer available 

xmlns:xalan="http://xml.apache.org//xalan"

What URL should be used instead of that ?

xmlns:util="src.DataValidator"

Actually  a java class is being used in XSLT for validation purpose.  
 For that validation, the following way a java class is being used as a component inside XSLT for my project.  
 But this is not working now because of that URL is no longer available.

<xalan:componet prefix="util"  elements="init validate done">
    <xalan:script lang="javaclass" src="xalan://src.DataValidator"/>
</xalan:component>

<util:init>
       <xsl:fallback/>  
</util:init>


The init , validate, done  functions  in DataValidator class should  executed from XSLT  , earlier it worked fine.

Now these are not getting called because component tag itself is getting neglected while transforming the data to xml format.

Could you please advice me how can make that code works from XSLT ?


Thanks
Subba.

Fw: Regarding this URL: http://xml.apache.org/xalan

Posted by Subbarao Damacharla <da...@yahoo.com>.


----- Forwarded Message -----
From: Subbarao Damacharla <da...@yahoo.com>
To: "xalan-j-users@xml.apache.org" <xa...@xml.apache.org> 
Sent: Friday, 26 April 2013 11:19 AM
Subject: Regarding this URL:  http://xml.apache.org/xalan
 


Hi  xalan-j-users,

As I got the below URL is no longer available 

xmlns:xalan="http://xml.apache.org//xalan"

What URL should be used instead of that ?

xmlns:util="src.DataValidator"

Actually  a java class is being used in XSLT for validation purpose.  
 For that validation, the following way a java class is being used as a component inside XSLT for my project.  
 But this is not working now because of that URL is no longer available.

<xalan:componet prefix="util"  elements="init validate done">
    <xalan:script lang="javaclass" src="xalan://src.DataValidator"/>
</xalan:component>

<util:init>
       <xsl:fallback/>  
</util:init>


The init , validate, done  functions  in DataValidator class should  executed from XSLT  , earlier it worked fine.

Now these are not getting called because component tag itself is getting neglected while transforming the data to xml format.

Could you please advice me how can make that code works from XSLT ?


Thanks
Subba.

Re: Regarding this URL: http://xml.apache.org/xalan

Posted by sh...@e-z.net.
Subbarao,

The URI of "http://xml.apache.org/xalan" is still usable for
namespace xmlns prefixes.  This is still the XML namespace for
the Xalan library - from my memory.

The URL to locate resources is "http://xalan.apache.org" for web
documentation.

Sincerely,
Steven J. Hathaway
Xalan Documentation Projects

> Hi  xalan-j-users,
>
> As I got the below URL is no longer available 
>
> xmlns:xalan="http://xml.apache.org//xalan"
>
> What URL should be used instead of that ?
>
> xmlns:util="src.DataValidator"
>
> Actually  a java class is being used in XSLT for validation purpose.  
>  For that validation, the following way a java class is being used as a
> component inside XSLT for my project.  
>  But this is not working now because of that URL is no longer available.
>
> <xalan:componet prefix="util"  elements="init validate done">
>     <xalan:script lang="javaclass" src="xalan://src.DataValidator"/>
> </xalan:component>
>
> <util:init>
>        <xsl:fallback/>  
> </util:init>
>
>
> The init , validate, done  functions  in DataValidator class should
>  executed from XSLT  , earlier it worked fine.
>
> Now these are not getting called because component tag itself is getting
> neglected while transforming the data to xml format.
>
> Could you please advice me how can make that code works from XSLT ?
>
>
> Thanks
> Subba.