Question 6

Which of the following is a correct SOAP (SOAP 1.1) message according to the WSDL (WSDL 1.1) definition?
  • Question 7

    Which of the following text strings is not output to the results document when performing an XSLT transformation on the following "XML Document" using the "XSLT Style Sheet" below? Note that the XSLT processor can output transformation results as a document. [XML Document]
  • Question 8

    Which of the following correctly describes the SOAP (SOAP 1.1) message sent from the client side to the service side?
  • Question 9

    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 (print and/or println method output)?
    [XML Document]
    2004-07-01
    2004-07-01 09:00
    Helen Edwards
    2004-07-01 13:00
    John Smith
    Assume that the processed XML Document has no indents (ignorable white space such as line feeds, tabs, etc.).
    [SAX Processing]
    Use the following "ContentHandlerImpl" class, and parse the XML Document using SAX.
    The SAX parser is namespace aware.
    Assume no execution errors.
  • Question 10

    Push the Exhibit Button to load the referenced "XML Document," and process XML using "DOM Processing".
    [XML Document]
    <doc><content>Today's<bold>"hot"</bold>news</content></doc>
    Select which of the following is the most appropriate expression of the results under XML 1.0.
    [DOM Processing]
    Process XML using the following method.
    Document output = updateXML( doc );
    The variable doc here references the Document instance of the loaded XML Document.
    Assume no execution errors.