Understanding Java Mapping concepts

by Admin


26 Oct
 None    Web Development


Submitted by spec-india


Submitted by spec-india
http://www.spec-india.com

Mapping is a way of transforming one XML structure to another XML structure. As a part of it, we do certain operations like breaking child nodes and attaching them to its parent node in an XML structure.
In XI/PI we have the following mapping techniques

  1. Graphical Mapping
  2. ABAP Mapping
  3. JAVA Mapping and
  4. XSLT Mapping

Among all the above mapping techniques, JAVA mappings improve the performance and are preferred as they get executed on J2EE engine directly. But in case of graphical mapping, XI/PI converts the mapping program into executable Java code internally based on graphical design and executes it on J2EE engine making it comparatively less efficiency. Java mappings are more useful when performance of integration server is concerned during runtime. Java mappings are Parsing Programs that can be developed in NWDS (NetWeaver Developer Studio), import as .jar files and can be used in the mapping part of Integration Repository. NWDS provides suitable Java environment and higher level tools to parse XML documents through the Simple API for XML (SAX) and the Document Object Model (DOM) interfaces. The SAX and DOM parsers are standards that are implemented in several different languages. In the Java programming language, you can instantiate the parsers by using the Java API for XML Parsing (JAXP).

JAVA mapping can be done in two ways:

  1. DOM Parsing
  2. SAX Parsing

At the core of the DOM API are the Document and Node interfaces. A Document is a top-level object that represents an XML document. The Document holds the data as a tree of Nodes, where a Node is a base type that can be an element, an attribute, or some other type of content. The Document also acts as a factory for new Nodes. Nodes represent a single piece of data in the tree, and provide all of the popular tree operations. You can query nodes for their parent, their siblings, or their children. You can also modify the document by adding or removing Nodes.

SAX Parsing Technique

SAX (Simple API for XML) is an event-driven model for processing XML. The SAX model is quite different. Rather than building a complete representation of the document, a SAX parser fires off a series of events as it reads the document from beginning to end. Those events are passed to event handlers, which provide access to the contents of the document.

Event Handlers

There are three types of event handlers: DTD Handlers, for accessing the contents of XML Document-Type Definitions; Error Handlers, for low-level access to parsing errors; and, by far the most often used, Document Handlers, for accessing the contents of the document. A SAX processor will pass the following events to a Document Handler:

a). The start of the document.
b). A processing instruction element.
c). A comment element.
d). The beginning of an element, including that element’s attributes.
e). The text contained within an element.
f). The end of an element.
g). The end of the document.

Advantages and Disadvantages SAXAdvantages:

  1. It is good when random access to widely separated parts of a document is required.
  2. It supports both read and write operations.

Advantage:

It is memory inefficient because DOM consumes more memory to construct the XML tree Object in the memory corresponding to the input XML its not advisable to use for parsing large XML documents In that case SAX is preferred over DOM.

  1. It is simple to program.
  2. It is memory efficient as SAX parser does not keep any of the document tree in memory.

Disadvantage:

The data is broken into pieces and clients never have all the information as a whole unless they create their own data structure.

Differences between SAX and DOM parser at a glance

SAX

  1. Parses node by node
  2. Doesn’t store the XML in memory
  3. We cant insert or delete a node
  4. Top to bottom traversing

DOM

  1. Stores the entire XML document into memory before processing
  2. Occupies more memory
  3. We can insert or delete nodes
  4. Traverse in any direction

About Spec-India
Spec-India is Software Development Company that offers Mobile Software Application Development, ASP.Net Application Development, HandHeld Computer System Development, Outsourcing Software Development and ASP.Net Framework Application Development.

Submitted by spec-india


News Categories

Ads

Ads

Subscribe

RSS Atom