5 Using Advanced XML APIs

The following sections provide information about using advanced XML APIs:

Using the Java API for XML Registries (JAXR) API

The Java API for XML Registries (JAXR) API, at http://java.sun.com/webservices/jaxr/, provides a uniform and standard Java API for accessing different kinds of registries, in particular XML registries used in Web Service applications.

At an abstract level, a registry is a neutral third party that helps facilitate the collaboration between two parties that are engaged in a partnership. The registry is available to the two parties as a shared resource, typically in the form of a Web-based resource. A registry is a key component in any Web Services architecture because it provides the ability for parties to publish, discover, and use Web Services.

Registries provide the following functionality:

  • Electronic Yellow Pages

    A registry can provide an independent online information exchange service that allows Web Service providers to advertise their product and Web Service consumers to discover these products.

    The registry can classify these Web Services in arbitrary and flexible ways, such as the industry it belongs to, its geographic location, the product it sells, and so on.

  • Database of Relatively Static Data

    A registry stores data and meta-data, similar to a database. The type of data it stores include:

  • Collaborative business process descriptions that describe in XML format a specific business protocol.

  • Parties in a collaborative business process.

  • XML Schemas that describe the XML documents exchanged during a collaborative business process.

    Essentially, the registry allows applications to store relatively static data reliably and to share it easily with other applications.

  • A registry also provides a way to exchange dynamic content between parties, such as price changes, discounts, promotions, and so on.

WebLogic Server provides a full implementation of the JAXR specification. Using the JAXR API, you can create JAXR clients that access a registry, or you can create a registry yourself.

For more information on using the JAXR API, see the Java Web Services http://java.sun.com/webservices/jaxr/ Web site.

Using the WebLogic XPath API

The WebLogic XPath API contains all of the classes required to perform XPath matching against a document represented as a DOM, an XMLInputStream, or an XMLOutputStream. Use the API if you want to identify a subset of XML elements within an XML document that conform to a given pattern.

For additional API reference information about the WebLogic XPath API, see "weblogic.xml.xpath" in the Oracle WebLogic Server API Reference and http://java.sun.com/webservices/jaxr/ Javadoc.

Using the DOMXPath Class

This section describes how to use the DOMXPath class of the WebLogic XPath API to perform XPath matching against an XML document represented as a DOM. The section first provides an example and then a description of the main steps used in the example.

Example of Using the DOMXPath Class

The sample Java program at the end of this section uses the following XML document in its matching:

<?xml version='1.0' encoding='us-ascii'?>

<!-- "Purchaseorder". -->

<purchaseorder
    department="Sales"
    date="01-11-2001"
    raisedby="Pikachu"
    >
    <item
        ID="101">
        <title>Laptop</title>
        <quantity>5</quantity>
        <make>Dell</make>
    </item>
    <item
        ID="102">
        <title>Desktop</title>
        <quantity>15</quantity>
        <make>Dell</make>
    </item>
    <item
        ID="103">
        <title>Office Software</title>
        <quantity>10</quantity>
        <make>Microsoft</make>
    </item>
</purchaseorder>

The Java code example is as follows:

package examples.xml.xpath;

import java.io.IOException;
import java.util.Iterator;
import java.util.Set;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
import weblogic.xml.xpath.DOMXPath;
import weblogic.xml.xpath.XPathException;
/**
 * This class provides a simple example of how to use the DOMXPath
 * API.
 *
 * @author Copyright (c) 2002 by BEA Systems, Inc. All Rights Reserved.
 */

public abstract class DOMXPathExample {

  public static void main(String[] ignored)

    throws XPathException, ParserConfigurationException,

           SAXException, IOException

  {

    // create a dom representation of the document

    String file = "purchaseorder.xml";

    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();

    factory.setNamespaceAware(true); // doesn't matter for this example

    DocumentBuilder builder = factory.newDocumentBuilder();

    Document doc = builder.parse(file);

    // create some instances of DOMXPath to evaluate against the

    // document.

    DOMXPath totalItems = // count number of items

      new DOMXPath("count(purchaseorder/item)");

    DOMXPath atLeast10 =  // titles of items with quantity >= 10

      new DOMXPath("purchaseorder/item[quantity >= 10]/title");

    // evaluate them against the document

    double count = totalItems.evaluateAsNumber(doc);

    Set nodeset = atLeast10.evaluateAsNodeset(doc);

    // output results

    System.out.println(file+" contains "+count+" total items.");

    System.out.println("The following items have quantity >= 10:");

    if (nodeset != null) {

      Iterator i = nodeset.iterator();

      while(i.hasNext()) {

        Node node = (Node)i.next();

        System.out.println("  "+node.getNodeName()+

                           ": "+node.getFirstChild().getNodeValue());

      }

    }

    // note that at this point we are free to continue using evaluate

    // atLeast10 and totalItems against other documents

  }

}

Main Steps When Using the DOMXPath Class

The following procedure describes the main steps to use the DOMXPath class to perform XPath matching against an XML document represented as a DOM:

  1. Create an org.w3c.dom.Document object from an XML document, as shown in the following code excerpt:

    String file = "purchaseorder.xml";
    DocumentBuilderFactory factory =
       DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document doc = builder.parse(file);
    
  2. Create a DOMXPath object to represent the XPath expression you want to evaluate against the DOM.

    The following example shows an XPath expression that counts the items in a purchase order:

     DOMXPath totalItems = 
          new DOMXPath("count(purchaseorder/item)");
    

    The following example shows an XPath expression that returns the titles of items whose quantity is greater or equal to 10:

     DOMXPath atLeast10 = 
          new DOMXPath("purchaseorder/item[quantity >= 10]/title");
    
  3. Evaluate the XPath expression using one of the DOMXPath.evaluateAsXXX() methods, where XXX refers to the data type of the returned data, such as Boolean, Nodeset, Number, or String.

    The following example shows how to use the evaluateAsNumber() method to evaluate the totalItems XPath expression:

    double count = totalItems.evaluateAsNumber(doc);
    System.out.println(file+" contains "+count+" total items.");
    

    The following example shows how to use the evaluateAsNodeset() method to return a Set of org.w3c.dom.Nodes which you can iterate through in the standard way:

     Set nodeset = atLeast10.evaluateAsNodeset(doc);
    
    System.out.println("The following items have quantity >= 10:");
      if (nodeset != null) {
         Iterator i = nodeset.iterator();
         while(i.hasNext()) {
           Node node = (Node)i.next();
           System.out.println("  "+node.getNodeName()+
                              ": "+node.getFirstChild().getNodeValue());
         }
      }
    

For additional API reference information about the WebLogic XPath API, see "weblogic.xml.xpath" in the Oracle WebLogic Server API Reference.

Using the StreamXPath Class

The example in this section shows how to use the StreamXPath class of the WebLogic XPath API to perform XPath matching against an XMLInputStream. The section first provides an example and then a description of the main steps used in the example. Although the example shows how to match only against an XMLInputStream, you can use similar code to match against an XMLOutputStream.

Example of Using the StreamXPath Class

The sample Java program at the end of this section uses the following XML document in its matching:

<?xml version='1.0' encoding='us-ascii'?>

<!-- "Stock Quotes". -->

<stock_quotes>
  <stock_quote symbol='BEAS'>
    <when>
      <date>01/27/2001</date>
      <time>3:40PM</time>
    </when>
    <price type="ask"     value="65.1875"/>
    <price type="open"    value="64.00"/>
    <price type="dayhigh" value="66.6875"/>
    <price type="daylow"  value="64.75"/>
    <change>+2.1875</change>
    <volume>7050200</volume>
  </stock_quote>
  <stock_quote symbol='MSFT'>
    <when>
      <date>01/27/2001</date>
      <time>3:40PM</time>
    </when>
    <price type="ask" value="55.6875"/>
    <price type="open"    value="50.25"/>
    <price type="dayhigh" value="56"/>
    <price type="daylow"  value="52.9375"/>
    <change>+5.25</change>
    <volume>64282200</volume>
  </stock_quote>
</stock_quotes>

The Java code for the example is as follows:

package examples.xml.xpath;

import java.io.File;
import weblogic.xml.stream.Attribute;
import weblogic.xml.stream.StartElement;
import weblogic.xml.stream.XMLEvent;
import weblogic.xml.stream.XMLInputStream;
import weblogic.xml.stream.XMLInputStreamFactory;
import weblogic.xml.stream.XMLStreamException;
import weblogic.xml.xpath.StreamXPath;
import weblogic.xml.xpath.XPathException;
import weblogic.xml.xpath.XPathStreamFactory;
import weblogic.xml.xpath.XPathStreamObserver;

/**
 * This class provides a simple example of how to use the StreamXPath
 * API.
 *
 * @author Copyright (c) 2002 by BEA Systems, Inc. All Rights Reserved.
 */

public abstract class StreamXPathExample {
  public static void main(String[] ignored)
    throws XPathException, XMLStreamException
  {
    // Create instances of StreamXPath for two xpaths we want to match
    // against this tream.

    StreamXPath symbols =
      new StreamXPath("stock_quotes/stock_quote");
    StreamXPath openingPrices =
      new StreamXPath("stock_quotes/stock_quote/price[@type='open']");

    // Create an XPathStreamFactory.

    XPathStreamFactory factory = new XPathStreamFactory();

    // Create and install two XPathStreamObservers.  In this case, we
    // just use to anonymous classes to print a message when a
    // callback is received.  Note that a given observer can observe
    // more than one xpath, and a given xpath can be observed by
    // mutliple observers.

    factory.install(symbols, new XPathStreamObserver () {
      public void observe(XMLEvent event) {
        System.out.println("Matched a quote: "+event);
      }

      public void observeAttribute(StartElement e, Attribute a) {} //ignore

      public void observeNamespace(StartElement e, Attribute a) {} //ignore

    });

    // Note that we get matches for both a start and an end elements,
    // even in the case of <price/> which is an empty element - this
    // is the behavior of the underlying streaming parser.
    factory.install(openingPrices, new XPathStreamObserver () {
      public void observe(XMLEvent event) {
        System.out.println("Matched an opening price: "+event);
      }
      public void observeAttribute(StartElement e, Attribute a) {} //ignore
      public void observeNamespace(StartElement e, Attribute a) {} //ignore
    });
    // get an XMLInputStream on the document
    String file = "stocks.xml";
    XMLInputStream sourceStream = XMLInputStreamFactory.newInstance().
      newInputStream(new File(file));
    // use the factory to create an XMLInputStream that will do xpath
    // matching against the source stream
    XMLInputStream matchingStream = factory.createStream(sourceStream);
    // now iterate through the stream
    System.out.println("Matching against xml stream from "+file);
    while(matchingStream.hasNext()) {
      // we don't do anything with the events in our example - the
      // XPathStreamObserver instances that we installed in the
      // factory will get callbacks for appropriate events
      XMLEvent event = matchingStream.next();
    }
  }
}

Main Steps When Using the StreamXPath Class

The following procedure describes the main steps to use the StreamXPath class to perform XPath matching against an XML document represented as an XMLInputStream:

  1. Create a StreamXPath object to represent the XPath expression you want to evaluate against the XMLInputStream.

    StreamXPath symbols =
       new StreamXPath("stock_quotes/stock_quote");
    

    The following example shows an XPath expression that matches stock quotes using their opening price:

    StreamXPath openingPrices = new   StreamXPath("stock_quotes/stock_quote/price[@type='open']");
    
  2. Create an XPathStreamFactory. Use this factory class to specify the set of StreamXPath objects that you want to evaluate against an XMLInputStream and to create observers (using the XPathStreamObserver interface) used to register a callback whenever an XPath match occurs. The following example shows how to create the XPathStreamFactory:

    XPathStreamFactory factory = new XPathStreamFactory();
    
  3. Create and install the observers using the XPathStreamFactory.install() method, specifying the XPath expression with the first StreamXPath parameter, and an observer with the second XPathStreamObserver parameter. The following example shows how to use an anonymous class to implement the XPathStreamObserver interface. The implementation of the observe() method simply prints a message when a callback is received. In the example, the observeAttribute() and observeNamespace() methods do nothing.

    factory.install(symbols, new XPathStreamObserver () {
      public void observe(XMLEvent event) {
        System.out.println("Matched a quote: "+event);
      }
      public void observeAttribute(StartElement e, Attribute a) {} 
      public void observeNamespace(StartElement e, Attribute a) {} 
     }
    );
    
  4. Create an XMLInputStream from an XML document:

    String file = "stocks.xml";
    
    XMLInputStream sourceStream =
        XMLInputStreamFactory.newInstance().newInputStream(new File(file));
    
  5. Use the createStream() method of the XPathStreamFactory to create a new XMLInputStream that will perform XPath matching against the original XMLInputStream:

     XMLInputStream matchingStream =
        factory.createStream(sourceStream);
    
  6. Iterate over the new XMLInputStream. During the iteration, if an XPath match occurs, the registered observer is notified:

    while(matchingStream.hasNext()) {
      XMLEvent event = matchingStream.next();
    }
    

For additional API reference information about the WebLogic XPath API, see "weblogic.xml.xpath" in the Oracle WebLogic Server API Reference.