> If I call:
>     Node node = doc.selectSingleNode( "/slideshow[@title]" );

Above sez give me a root element called slideshow which has 'title'
attribute. To get the attribute it self you will need to do this:

Node node =
doc.selectSingleNode("/lideshow[@title]").selectSingleNode("@title");


Hope this helps.

Best regards,
--
HTTP is a stateless protocol, and the Internet is a stateless development
environment
--
Igor Fedulov
E-mail : [EMAIL PROTECTED]
Work Ph: 773.775.1595
Home Ph: 773.281.8938
Cell Ph: 773.580.5935




_______________________________________________
dom4j-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dom4j-user

Reply via email to