Welcome to YLOAN.COM
yloan.com » Software » Java Mapping Concepts Understanding
Games Personal-Tech Data Entry registry cruise torrent mac code virus storage uninstaller systems cisco bugs wireless codes maintenance dell update communication trojan atlanta Data Backup Data Storage Data Protection Data Recovery Anti-Virus Windows Linux Software Hardware Mobil-Computing Certification-Tests Computers & Internet Internet

Java Mapping Concepts Understanding

Mapping is the 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 and more 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 elements attributes.

e). The text contained within an element.

f). The end of an element.

g). The end of the document.

Advantages and Disadvantages SAX

Advantages:

DOM

Advantages:

1. It is good when random access to widely separated parts of a document is required.

2. It supports both read and write operations.

Disadvantage:

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. Doesnt 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.

by: Spec India
Windows Security Essentials Choosing A Beat Making Software That Works For You Sap Business One Integration Technical Notes Terrorism: A Personal Issue Time’s running out for this free trading software Urgent! Last Day for Trading Software Giveaway.. Using Email Marketing As Online Public Relations The Need For Anti-virus Software In The Office Place The Great Software Development Race Custom Software Development For Businesses Web Design: Key To Success Your Business Data Visualization Make Easier To Present Data In An Elegant Way Creating A Winning Proposal With Proposal Making Tools
print
www.yloan.com guest:  register | login | search IP(3.143.228.88) / Processed in 0.009075 second(s), 7 queries , Gzip enabled , discuz 5.5 through PHP 8.3.9 , debug code: 90 , 4416, 95,
Java Mapping Concepts Understanding