Which among below is the correct syntax for processing a jsp by XSLT?
-
<c:set var="xsluri" scope="page"><c:out value="sepaddoverview"/></c:set> <aab-util:aabProcessXML xslUri="${xsluri}" xmlDoc="${xmlDoc}" />
-
<c:set var="xsluri" scope="page"><c:out value="sepaddoverview"/></c:set> <aab-xml:aabProcessXML xslUri="${xsluri}" xmlDoc="${xmlDoc}" />
-
<aab-xml:aabProcessXML xslUri="sepaddoverview" xmlDoc="${xmlDoc}" />
-
Only b and c
-
All of the above
D
Correct answer
Explanation
Both options b and c represent valid syntax for processing a JSP or XML using the AAB XML utility library. Option b stores the XSL URI in a page-scoped variable before invoking the tag, while option c passes the string literal directly. Both resolve to valid tag library usage.