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
Select which of the following correctly describes the message reception processing circumstances when a well-formed XML document has been sent/ received. [Transmission] Character encoding for the transmitted XML document is "UTF-16", and no XML declaration has been specified. The media type for transmission is set as "application/xml" without char set parameter. [Receipt] Implementation follows RFC3023 and XML 1.0. The receiving system first identifies the media type, and then processes the XML document. At the point that character encoding has been determined, an XML declaration (including encoding declaration) is appended automatically to the head of the received XML document.
Answer : D
Which of the following is a correct statement about XML security?
Answer : B
Which of the following correctly describes a WSDL (WSDL 1.1) definition defining a certain service specification?
Answer : C
Push the Exhibit Button to load the referenced "XSLT Style Sheet". Select which of the following correctly describes the output results of an XSLT transformation of the "XML Document" using the "XSLT Style Sheet".
[XSLT Style Sheet]
Note that the XSLT processor can output transformation results as a document. Line feeds and indents are not reflected.
[XML Document]
89
70
Answer : B
Which of the following sentences does not correctly describe a SAX DefaultHandler
Answer : A
Use DOM programming to create XML according to the schema defined by TravelXML (portions modified for this question). Create XML according to the method shown by "DOM Processing". Select which of the following correctly describes the results of performing a validation check on the created XML against the schema ("XML Schema" referenced when the Exhibit Button is pushed).
[DOM Processing]
Create XML using the following method.
Document doc = createXML( impl );
The variable impl here references the DOMImplementation instance.
The DOM parser is namespace aware.
Assume no execution errors.
Answer : C