Adapter to XML database

hello everybody,

we are in a progress of developing an adapter for an XML database, and XQJ will be the communication layer.

what is the best possible way to expose XML in output pipeline? i considered that there are following ways

  1. XML string
  2. IData
  3. document.
  4. XMLNode

are there other better ways?

I don’t know much about the XMLNode.

Its all depends on how your custom XML adapter accept/process the data to target system.All the four terms you narrated can fit in the solution.

Preferably:

XML string(xmldata)
Load XML content as CLOB/BLOB into db)

How big/size of these XML’s?

HTH,
RMG

Hi RMG,

Thanks for your reply

Actually the XML data stored in native XML database. the size of the XML would normally be 500kb. but the count might be huge.

Best regards,
Arunachalam