Are there good practices for processing messages or requests/responses dealing with huge amounts of data (MBytes? GBytes?) via an middleware or an EAI system, assunming that the middleware transports but does not process the huge data blobs?
Transport the data with the message in order to keep coherence but probably several times copy huge amounts of data between systems
Keep the data in a store or data repository (file system, database,...) and transport a reference to the data, however loosing the close coupling between the message and the data
What is the common solution to this problem? How is this supported by EAI or middleware products?