Which of the following sentences does not correctly describe a SAX DefaultHandler
Answer : A
Push the Exhibit Button to load the referenced "XML Document". When processing the "XML Document" according to the method shown by "SAX Processing," which of the following correctly describes the output results (println method output)?
[XML Document]
2004-07-01
2004-07-01-09:00
2004-07-01 13;00
Assume that the processed XML Document has no indents (ignorable white space such as line feeds, tabs, etc.). Although the expected processing result is choice "A", processing may not occur as expected. [SAX Processing] Use the following "ContentHandlerImpl" class, and parse the XML Document using SAX. The SAX parser is namespace aware. Assume no execution errors.
Answer : A
Which of the following correctly describes a node included in the DOM (Level 2) tree after parsing the following "XML Document"? (Multiple answers possible. Select four.)
Answer : B, C, D, F
Which of the following correctly describes the SOAP (SOAP 1.1) message sent from the client side to the service side?
Answer : D
Push the Exhibit Button to load the referenced "XML Document". When processing the "XML Document" according to the method shown by "DOM Processing," which of the following is the most appropriate expression of the results under XML 1.0? Line feeds and/or indents are not reflected in the results.
Although the expected processing result is choice "B", processing may not occur as expected.
[DOM Processing]
Process XML using the following method.
Document output = createXML( doc, impl );
The variable doc here references the Document instance of the loaded XML Document.
The variable impl here references the DOMImplementation instance.
The DOM parser is namespace aware.
Assume no execution errors.
}
return output;
}
Answer : A
When receiving an XML document following the DTD defined by NewsML (portions modified for this question), the document is processed via SAX programming. Push the Exhibit Button to load the referenced "DTD". When processing the following "XML Document" according to the method shown by "SAX Processing," which of the following correctly describes the output results (print method output)?
[DTD]
Note that the attribute value is not output for this question.
[XML Document]
The root element name (document element name) is "NewsML".
The XML document follows the "DTD" definition.
The XML Document has no document type declaration.
The XML Document is comprised of elements, attributes and character data; comments and CDATA secions, etc. are not included.
The XML Document is indented, and includes ignorable white spaces such as line feeds and tabs before the start-tags.
[SAX Processing]
Use the following "ContentHandlerImpl" class, and parse the XML Document using SAX.
Assume no execution errors.
Answer : B
Select which of the following correctly describes WSDL. (WSDL 1.1)
Answer : D