cancel
Showing results for 
Search instead for 
Did you mean: 

mapping

Former Member
0 Kudos

Hi friends,

we are using graphical mapping in sap xi , weather this mapping runs on SAX or DOM?

xslt runs on which parser ?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Internally XI's Graphical Mapping works on SAX Parser Concept

Regards

Seshagiri

Former Member
0 Kudos

Hi,

SAX.

Reward points for correct answer

Answers (6)

Answers (6)

former_member193376
Active Contributor
0 Kudos

Hi

In short, graphical mapping is coverted to Java code and is parsed by the SAX PARSER..

In case of XSLT mapping, there is no parser used.

Former Member
0 Kudos

Hi,

Graphical mapping runs on SAX parser.

XSLT mapping not require any Parsers, we write some tags based on that it will executes.

Former Member
0 Kudos

HI,

If you use Graphical mapping it coverts to java code. So it uses java mapping Java mapping involves 2 types

one is using DOM and another is SAX

Writing code in dom is difficult

SAX is an event based programing very less code and easy to maintainable. but SAX inturn uses DOM.

Reward points if needful.

Thanks,

RamuV

Former Member
0 Kudos

Hi,

> we are using graphical mapping in sap xi , weather this mapping runs on SAX or DOM?

It runs on SAX.

/people/venkat.donela/blog/2005/06/09/introduction-to-queues-in-message-mapping

Regards

Patrick

former_member181985
Active Contributor
0 Kudos

Hi,

It runs on custom build program preprogrammed SAP XI Core developers.

Once we activate a program it will be internally deployed into mapping runtime.

Every mapping program extends AMappingProgram which has certain methods for processing graphically mapped inputs.

Thanks

Gujjeti

Edited by: Praveen Gujjeti on May 9, 2008 11:59 AM

Former Member
0 Kudos

hi

Message Mapping -> Graphical Design and testing environment. Default Provided By XI. Queue based modelling allow handling or large documents. Extensible via user defined functions

XSLT Mapping - > Based on openstandard, Portable across application platform, Extensible using user defined functions kewl but disadvantage is Memory overload while handling large documents.

SAX -> Simple Api For XML. -> Allows you to parse through a XML document. Doesn't consume any memory. But the message can be parsed only once from top to bottom. It Has evolved by contributions made by group of ppl itz a open architecture.

DOM -> Document Object Model -> Itz designed by W3C. Consumes Memory as the message will be loaded. Allows parsing of document in both way top down and bottom up.

reward points if found helpfull

regards

chandra.k