File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes XML and Related Technologies and the fly likes Help for ibm cert for XML Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » XML and Related Technologies
Reply Bookmark "Help for ibm cert for XML" Watch "Help for ibm cert for XML" New topic
Author

Help for ibm cert for XML

Amrit Bhamra
Greenhorn

Joined: Jul 18, 2001
Posts: 6
Hi
I am new to ur group i have booked for the exam this Monday
Pl can some one explain the correct answers.
Valid DTD
a) <!DOCTYPE SYSTEM SYSTEM "test.dtd">
<SYSTEM></SYSTEM>
b) <!DOCTYPE PUBLIC SYSTEM "test.dtd">
<PUBLIC></PUBLIC>
c) <!DOCTYPE PUBLIC PUBLIC "test.dtd">
<PUBLIC></PUBLIC>
d) <!DOCTYPE SYSTEM PUBLIC "test.dtd">
<PUBLIC></PUBLIC>
Ans a, b
Considering the code below, what should be placed at /// your code /// to output "My Text"?
--------XML document-----------------
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="MyTest.xsl"?>
<MyNode>
<MyText>My Text</MyText>
</MyNode>
--------XSL document-----------------
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" version="1.0">
<xsl:template match="/">
<html>
<body>
/// your code ///
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Anw <xsl:value-of select="//MyNode"
What is wrong with
<xsl:value-of select="text()"/>
 
 
subject: Help for ibm cert for XML
 
Threads others viewed
Simple XSL transformation
why is the output not displayed
XSL Table output.
passing parameters
Using XML in JSP
MyEclipse, The Clear Choice