xsl-list
[Top] [All Lists]

[xsl] Writing xslt from DSML

2010-04-20 09:20:39
Hi,

I am using XSLT 2.0.
I have to form write the XSLT for the DSML content extracted from a LDAP server.
I am trying to generate an XML fragment from multivalued LDAP attributes. 
data(in DSML form) looks like

<batchResponse xmlns:xsd="http://www.w3c.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3c.org/2001/XMLSchema-instance";>
   <searchResponse>
      <searchResultEntry dn="uid=282002558871883,ou=People,o=sct.com,o=cp">
         <attr name="uid">
            <value>282002558871883</value>
         </attr>
         <attr name="pdsloginid">
            <value>fac60006</value>
         </attr>
         <attr name="givenname">
            <value>Brutus</value>
         </attr>
         <attr name="pdsemaildefaultaddress">
            <value>fac60006(_at_)sct(_dot_)com</value>
         </attr>
         <attr name="pdscpsurveyed">
            <value>true</value>
         </attr>
</searchResponse>
</batchResponse >

I need the XML file from the above DSML file.
The XML file which I need is 
<batchResponse xmlns:xsd="http://www.w3c.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3c.org/2001/XMLSchema-instance";>
    <uid>
   
     282002558871883
    </uid>
    <pdsloginid>
        fac60006
    </pdsloginid>
    <givenname>
        Brutus
    </givenname>
    <pdsemaildefaultaddress>
        fac60006(_at_)sct(_dot_)com
    </pdsemaildefaultaddress>
    <pdscpsurveyed>
        true
    </pdscpsurveyed>
</batchResponse >
So how can I achieve this using XSLT.
I am a newbee to XSLT.Please help

Thank you,
Evergreen








--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>