| Oracle9i XML Developer's Kits Guide - XDK Release 2 (9.2) Part Number A96621-01 |
|
This chapter describes the JavaBeans available for use with Oracle XML. The topics in this chapter are:
The Oracle XML Transviewer beans are provided as part of XDK for JavaBeans with the Oracle9i Enterprise and Standard Editions from Release 2 (8.1.6) and higher. If you do not have these editions, then you can download the beans from the site: http://otn.oracle.com/tech/xml
XML Transviewer Beans facilitate the addition of graphical interfaces to your XML applications.
Bean encapsulation includes documentation and descriptors that can be accessed directly from Java Integrated Development Environments like JDeveloper.
A sample application that demonstrates all of the beans to create a simple XML editor and XSL transformer is included with your software.
The included sample application with the XML SQL Utility (XSU) cause the following:
Database Connectivity is included with the XML Transviewer Beans. The beans can now connect directly to a JDBC-enabled database to retrieve and store XML and XSL files.
XML Transviewer Beans comprises the following beans:
The DOMBuilder bean is a non-visual bean. It builds a DOMTree from an XML document.
The DOMBuilder bean encapsulates the XML Parser for Java's DOMParser class with a bean interface and extends its functionality to permit asynchronous parsing. By registering a listener, Java applications can parse large or successive documents and then allow control to return immediately to the caller.
The XSLTransformer bean is a non-visual bean. It accepts an XML file, applies the transformation specified by an input XSL stylesheet and creates the resulting output file.
XSLTransformer bean enables you to transform an XML document to almost any text-based format including XML, HTML, and DDL, by applying the appropriate XSL stylesheet.
The Treeviewer bean displays XML formatted files graphically as a tree. The branches and leaves of this tree can be manipulated with a mouse.
The XMLSourceView bean is a visual Java bean. It allows visualization of XML documents and editing. It enables the display of XML and XSL formatted files with color syntax highlighting when modifying an XML document with a text editor. This helps view and edit the files. It can be integrated with DOMBuilder bean, and allows pre- or post-parsing visualization and validation against a specified DTD.
This is a visual Java bean that applies XSL transformations on XML documents and shows the results. It allows editing of XML and XSL input files.
DBViewer bean is Java bean that displays database queries or any XML by applying XSL stylesheets and visualizing the resulting HTML in a scrollable swing panel. DBViewer bean has XML and XSL tree buffers as well as a result buffer. DBViewer bean allows the calling program to:
The result can be stored in the result buffer. The XML and XSL buffer content can be shown as a source or tree structure. The result buffer content can be rendered as HTML and also shown as source or tree structure. The XML buffer can be loaded from a database query.
DBAccess bean maintains CLOB tables that contain multiple XML and text documents.
The guidelines for using the XML Transviewer Beans are described in the following sections:
DOMBuilder() class implements an XML 1.0 parser according to the World Wide Web Consortium (W3C) recommendation. It parses an XML document and builds a DOM tree. The parsing is done in a separate thread and the DOMBuilderListener interface must be used for notification when the tree is built.
The DOMBuilder bean encapsulates the XML Parser for Java with a bean interface. It extends its functionality to permit asynchronous parsing. By registering a listener, a Java application can parse documents and return control return to the caller.
Asynchronous parsing in a background thread can be used interactively in visual applications. For example, when parsing a large file with the normal parser, the user interface freezes until the parsing has completed. This can be avoided with the DOMBuilder bean. After calling the DOMBuilder bean parse method, the application can immediately regain control and display "Parsing, please wait". If a "Cancel" button is included you can also cancel the operation. The application can continue when domBuilderOver() method is called by DOMBuilder bean when background parsing task has completed.
When parsing a large number of files, DOMBuilder bean can save time. Response times that are up to 40% faster have been recorded when compared to parsing the files one by one.
Figure 10-1 illustrates DOMBuilder Bean usage.
DOMBuilder.addDOMBuilderListener(DOMBuilderListener) and adds DOMBuilderListener.| See Also :
Table 10-1 for a list of available methods to apply |
DOMBuilderOver() method. This is called when it receives an asynchronous call from an application. This interface must be implemented to receive notifications about events during asynchronous parsing. The class implementing this interface must be added to the DOMBuilder using addDOMBuilderListener method.
Available DOMBuilderListener methods are:
DOMBuilder.getDocument() fetches the resulting DOM document and outputs the DOM document.
The XSLTransformer bean accepts an XML file and applies the transformation specified by an input XSL stylesheet to create and output file. It enables you to transform an XML document to almost any text-based format including XML, HTML, and DDL, by applying an XSL stylesheet.
When integrated with other beans, XSLTransformer bean enables an application or user to immediately view the results of transformations.
This bean can also be used as the basis of a server-side application or servlet to render an XML document, such as an XML representation of a query result, into HTML for display in a browser.
The XSLTransformer bean encapsulates the Java XML Parser XSLT processing engine with a bean interface and extends its functionality to permit asynchronous transformation.
By registering a listener, your Java application can transform large and successive documents by having the control returned immediately to the caller.
XSL transformations can be time consuming. Use XSL Transformer bean in applications that transform large numbers of files and it can concurrently transform multiple files.
XSLTransformer bean can be used for visual applications for a responsive user interface. There are similar issues here as with DOMBuilder bean.
By implementing XSLTransformerListener() method, the caller application can be notified when the transformation is complete. The application is free to perform other tasks in between requesting and receiving the transformation.
This scenario illustrates one way of applying XSLTransformer bean.
The HTML stored in the CLOB table always mirrors the last data stored in the tables being queried. A JSP (Java Server Page) can display the HTML.
In this scenario, multiple end users do not produce multiple data queries that contribute to larger loads to the database. The HTML is regenerated only when the underlying data changes.
Figure 10-2 illustrates XSLTransformer bean usage. For examples of implementing this bean, see "Transviewer Bean Example 1: AsyncTransformSample.java".

XSLTransfomer.addXSLTransformerListener(XSLTransformerListener)method. This adds a listener.XSLTransformerListener.xslTransformerOver() method is called. This interface must be implemented to receive notifications about events during the asynchronous transformation. The class implementing this interface must be added to the XSLTransformer event queue using the method addXSLTransformerListener.The Treeviewer bean displays an XML document as a tree. It recognizes the following XML DOM nodes:
It takes as input an org.w3c.dom.Document object.
Figure 10-3, "Treeviewer Bean in Action: Displaying an XML Document as a Tree" shows how the Treeviewer bean displays the XML document and the editing options.

Figure 10-4 illustrates XML Treeviewer bean usage. A DOM XML document is input to the XMLTreeView.setXMLDocument(doc) method. This associates the XML Treeviewer with the XML document. The Treeviewer bean methods are:

XMLSourceView bean is a visual Java bean that displays an XML document. It improves the viewing of XML and XSL files by color-highlighting the XML/XSL syntax. It also offers an Edit mode. XMLSourceView bean easily integrates with DOMBuilder bean. It allows for pre- or post-parsing visualization and validation against a specified DTD.
XMLSourceView bean recognizes the following XML token types:
Each token type has a foreground color and font. The default color/font settings can be changed by the user. This takes an org.w3c.dom.Document object as input.
Figure 10-5 displays an XML document with tags shown in blue, tag content in black, and attributes in red.
Figure 10-6 shows the XMLSourceView bean usage. This is part of the oracle.xml.srcviewer API. A DOM document inputs XMLSourceView.SetXMLDocument(Doc). The resulting DOM document is displayed. See "Transviewer Bean Example 2: ViewSample.java".


The following table, Table 10-3, lists the XMLSourceView Bean methods.
XMLTransformPanel visual bean applies XSL transformations to XML documents. It visualizes the result and allows editing of input XML and XSL documents and files. XMLTransformPanel bean requires no programmatic input. It is a component that interacts directly with you and is not customizable.
XMLTransformPanel bean has the following features:
|
Note: CLOB tables created by the XSL Transformer bean can be used by trigger-based stored procedures to mirror tables or views in the database into HTML data held in these CLOB tables. See "XSL Transviewer Bean Scenario 1: Regenerating HTML Only When Data Changes". |
The Transviewer bean is one application that illustrates the use of XMLTransform Panel bean. It can be used from a command line to perform the following actions:
| See Also:
"Transviewer Bean Example 3: XMLTransformPanelSample.java" for an example of how to use XMLTransformPanel. |

DBViewer bean can be used to display database queries on any XML document by applying XSL stylesheets and visualizing the resulting HTML in a scrollable swing panel. See:
DBViewer bean has the following three buffers:
DBViewer bean API allows the calling program to load or save buffers from various sources and apply stylesheet transformation to the XML buffer using the stylesheet in the XSL buffer. Results can be stored in the result buffer.
Content in the XML and XSL buffers can be shown as a source or tree structure. Content in the result buffer can be rendered as HTML and also shown as a source or tree structure.
The XML buffer can be loaded using a database query. All the buffers can be loaded from and files saved from the following:
Therefore, control can also be used to move files between the file system and the user schema in the database.


Figure 10-10 illustrates DBViewer bean's usage.

Table 10-4 lists the DBViewer bean methods.
DBAccess bean maintains CLOB tables that can hold multiple XML and text documents. Each table is created using the following statement:
CREATE TABLE tablename FILENAME CHAR( 16) UNIQUE, FILEDATA CLOB) LOB(FILEDATA) STORE AS (DISABLE STORAGE IN ROW)
Each XML (or text) document is stored as a row in the table. The FILENAME field holds a unique string used as a key to retrieve, update, or delete the row. Document text is stored in the FILEDATA field. This is a CLOB object. CLOB tables are automatically maintained by the Transviewer bean. The CLOB tables maintained by DBAccess bean can be later used by the Transviewer bean. DBAccess bean does the following tasks:
Figure 10-11 illustrates the DBAccess bean usage. It shows how DBAccess bean maintains, and manipulates XML documents stored in CLOBs.

Table 10-5 lists the DBAccess bean methods.
The XML Diff Bean performs a tree comparison on two XML DOM trees. It displays the two XML trees and shows the differences between the XML trees. A node can be inserted, deleted, moved, or modified. Each of these operations is shown in a different color or style as in the following list:
Moves will be displayed visually as a delete or insert operation.
You can generate the differences between the two XML trees in the form of XSL code. The first XML file can be transformed into the second XML file by using the XSL code generated.
The XMLDiff Bean has the methods described in this section.
Finds the differences between the two XML files or the two XMLDocument objects.
Implements the DOMBuilderErrorListener interface called only by the DOM parser.
Implements the DOMBuilderErrorListener interface called only by the DOM parser when there is an error while parsing.
Implements the DOMBuilderListener interface called only by a DOM parser thread when the parsing is done.
Implements the DOMBuilderListener interface called only by the DOM parser when the parsing begins.
Performs the comparison of two nodes. It is called by the differ algorithm. You can overwrite this function for customized comparisons.
Generates an XSL stylesheet as an XMLDocument that initially represents the differences between the two XML document sets.
Generates an XSL file of input filename that represents the differences between the two XML files which were initially set.
Gets the text panel as JTextPane object that visually shows the diffs in the first XML file.
Gets the text panel as a JTextPane object that visually shows the diffs in the second XML file or document.
Gets the document root as an XMLDocument object of the first XML tree
Gets the document root as an XMLDocument object of the second XML tree
Prints the diff tree that contains the node names and values that have been identified as diffs by the algorithm. This method is useful for debugging.
Sets the XML documents which need to be compared.
Sets the XML files which need to be compared.
Sets the indentation for the XSL generation. This should be called before the generateXSLFile() or generateXSLDoc() methods. The indentation will be applied to all attributes only. For indenting newly inserted nodes besides attributes see void setNewNodeIndentIncr(int spaces).
Sets the first XML file that needs to be compared.
Sets the first XML document that needs to be compared.
Sets the second XML file that needs to be compared.
Sets the second XML document that needs to be compared.
Sets the indentation for the XSL generation. This should be called before the generateXSLFile() or generateXSLDoc() methods. The indentation will be applied to all newly inserted nodes only (except attributes). For attributes indentation support see void setIndentIncr(int spaces).
Assumes that there are no moves to be detected by the diff algorithm. This function should be called before the diff() function. Using this method should improve performance.
The XDK for Java Transviewer bean sample/ directory contains sample Transviewer bean applications that illustrate how to use Oracle Transviewer beans. Oracle Transviewer beans toolset contains DOMBuilder, XMLSourceView, XMLTreeView, XSLTransformer, XMLTransformPanel, DBViewer, DBAccess, and XMLDiff beans.
Table 10-6 lists the sample files in sample/.
| File Name | Description |
|---|---|
|
booklist.xml |
Sample XML file used by Example 1, 2, or 3. |
|
doc.xml |
Sample XML file used by Example 1, 2, or 3. |
|
doc.html |
Sample HTML file used by Examples 1, 2, or 3. |
|
doc.xsl |
Sample input XSL file used by Examples 1, 2, or 3. doc.xsl is used by XSLTransformer. |
|
emptable.xsl |
Sample input XSL file used by Examples 1, 2, or 3. |
|
tohtml.xsl |
Sample input XSL file used by Examples 1, 2, or 3. Transforms booklist.xml. |
|
See "Transviewer Bean Example 1: AsyncTransformSample.java". |
Sample nonvisual application using XSLTransformer bean and DOMBuilder bean. It applies the XSLT stylesheet specified in doc.xsl on all *.xml files from the current directory. The results are in the files with extension.log. |
|
Sample visual application that uses XMLSourceView and XMLTreeView beans.It visualizes XML document files. |
|
|
See "Transviewer Bean Example 3: XMLTransformPanelSample.java". |
A visual application that uses XMLTransformPanel bean. This bean uses all four beans from above. It applies XSL transformations on XML documents and shows the result Visualizes and allows editing of XML and XSL input files. |
|
See: |
A sample visual application that uses DBViewer bean to implement simple insurance claim handling application. |
|
A sample visual application by which users can graphically compare any two XML files. The differences between the two files can be viewed as XSLT code. The first XML file can be transformed into the second XML file using the generated XSLT. |
The Transviewer beans require as a minimum JDK 1.1.6, and can be used with any version of JDK 1.2.
After installing this components, include classes111.zip and oraclexmlsql.jar in your classpath.
Makefile to point to your JDK path. In addition, on Windows NT, change the file separator as stated in the Makefile. If you do not have an ORACLE_HOME set, then set it to the root directory of your XDK JavaBeans installation.Use the sample files XMLDiffData1.txt and XMLDiffData2.txt to test the demo sample6 for the XMLDiff Bean. A few .xml files are provided as test cases. An XSL stylesheet 'doc.xsl' is used by XSLTransformer.
|
Note: sample1 runs the XMLTransViewer program so that you can import and export XML files from Oracle9i, keep your XSL transformation files in Oracle9i, and apply stylesheets to XML interactively. |
To use the database connectivity feature in this program, you must know the following:
You also need an account with CREATE TABLE privilege.
You can try the default account scott with password tiger if it still enabled on your Oracle9i system.
The following is the makefile script:
# Makefile for sample java files .SUFFIXES : .java .class CLASSES = ViewSample.class AsyncTransformSample.class XMLTransformPanelSample.class # Change it to the appropriate separator based on the OS PATHSEP= : # Change this path to your JDK location. If you use JDK 1.1, you will need # to download also Swing 1.1 and add swingall.jar to your classpath. # You do not need to do this for JDK 1.2 since Swing is part of JDK 1.2 JDKPATH = /usr/local/packages/jdk1.2 # Make sure that the following product jar/zip files are in the classpath: # - Oracle JDBC driver for thin client (file classes111.zip) # - Oracle XML SQL Utility (file oraclexmlsql.jar) # You can download this products from technet.us.oracle.com # CLASSPATH :=$(CLASSPATH)$(PATHSEP)../lib/xmlparserv2.jar$(PATHSEP)../lib/xmlcomp.jar$(PATH SEP)../lib/jdev-rt.zip$(PATHSEP).$(PATHSEP) %.class: %.java $(JDKPATH)/bin/javac -classpath "$(CLASSPATH)" $< # make all class files all: $(CLASSES) sample1: XMLTransformPanelSample.class $(JDKPATH)/bin/java -classpath "$(CLASSPATH)" XMLTransformPanelSample sample2: ViewSample.class $(JDKPATH)/bin/java -classpath "$(CLASSPATH)" ViewSample sample3: AsyncTransformSample.class $(JDKPATH)/bin/java -classpath "$(CLASSPATH)" AsyncTransformSample
This example shows you how to use DOMBuilder and the XSLTransformer beans to asynchronously transform multiple XML files.
import java.net.URL; import java.net.MalformedURLException; import java.io.IOException; import java.io.InputStream; import java.io.ObjectInputStream; import java.io.OutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.PrintWriter; import java.util.Vector; import org.w3c.dom.DocumentFragment; import org.w3c.dom.DOMException; import oracle.xml.async.DOMBuilder; import oracle.xml.async.DOMBuilderEvent; import oracle.xml.async.DOMBuilderListener; import oracle.xml.async.DOMBuilderErrorEvent; import oracle.xml.async.DOMBuilderErrorListener; import oracle.xml.async.XSLTransformer; import oracle.xml.async.XSLTransformerEvent; import oracle.xml.async.XSLTransformerListener; import oracle.xml.async.XSLTransformerErrorEvent; import oracle.xml.async.XSLTransformerErrorListener; import oracle.xml.async.ResourceManager; import oracle.xml.parser.v2.DOMParser; import oracle.xml.parser.v2.XMLDocument; import oracle.xml.parser.v2.XSLStylesheet; import oracle.xml.parser.v2.*; public class AsyncTransformSample { /** * uses DOMBuilder bean */ void runDOMBuilders () { rm = new ResourceManager (numXMLDocs); for (int i = 0; i < numXMLDocs; i++) { rm.getResource(); try { DOMBuilder builder = new DOMBuilder(i); URL xmlURL = createURL(basedir + "/" + (String)xmlfiles.elementAt(i)); if (xmlURL == null) exitWithError("File " + (String)xmlfiles.elementAt(i) + " not found"); builder.setPreserveWhitespace(true); builder.setBaseURL (createURL(basedir + "/")); builder.addDOMBuilderListener (new DOMBuilderListener() { public void domBuilderStarted(DOMBuilderEvent p0) {} public void domBuilderError(DOMBuilderEvent p0) {} public synchronized void domBuilderOver(DOMBuilderEvent p0) {