|
WebLogic Server 7.0 Code Examples, BEA Systems, Inc. | |||||
This example demonstrates how to parse an XML document using a DOM parser obtained via JAXP.
See:
Description
This example demonstrates how to parse an XML document using a DOM parser obtained via JAXP.
The example receives an XML file over HTTP from a client and uses the DOM API (via JAXP) to parse the document.
The example illustrates how to:
| Additional Resources for examples.xml.dom | |
| Dom.jsp | The JSP that receives the XML data from the Java Client, parses it, and sends an acknowledgement back to the Client over HTTP. |
| stock_quote.xml | The XML file that is passed between the Java Client and the JSP over HTTP. |
The following sections describe how to build and run the example.
prompt> antThe Java ant command uses the
build.xml file, located in the SAMPLES_HOME\server\src\examples\xml\dom
directory, to build the example. The Java Ant command performs the following steps:
prompt> ant run
|
Documentation is available at http://e-docs.bea.com/wls/docs70 |
|||||