InterviewSolution
Saved Bookmarks
| 1. |
How Can You Find Out The Tag Name Of An Xml Element Excluding The Namespace? |
|
Answer» By using the local-name() Xpath function For the Xml node REQUEST XMLNS:ns0=blah blah>ABC local-name function will RETURN Request. By using the local-name() Xpath function example: For the Xml node Request xmlns:ns0=blah blah>abc local-name function will return Request. |
|