Accessing CDATA content using e4x

I have a xml content like this,\[code\]<definition> <dsXMLConfiguration><![CDATA[<configuration xmlns:xml="http://www.w3.org/XML/1998/namespace"><driverClassName> com.mysql.jdbc.Driver</driverClassName><url>jdbc:mysql://localhost:3306/employeedb</url><username>root</username><password encrypted="true">root</password></configuration>]]></dsXMLConfiguration> <type>RDBMS</type></definition>\[/code\]I want to access the value related to "driverClassName" tag, inside CDATA section. I tried several ways using e4x, but was not successfull.I used var dsXMLConfiguration=entry.::definition.::dsXMLConfiguration to acess, but Cant access any elemnets from there onwards.
 
Back
Top