Is it possible to have Map Chaining on the Port Level
Firstly, let's understand what is Map chaining: The process of producing multiple documents from a single document by executing several maps to 07anslate the single document. So is it possible on the port level? This has two answers, Yes and No depending upon how and where it is applied. To find out the working, I created a project with three document schema (Item, Product and Article) and a couple of maps and deployed it: 1. Map1: ItemToProduct 2. Map2: ProductToArticle Scenario 1: Map chaining on a single port (Receive/Send Port) In order to test map chaining on a single port, I configured ReceivePort with two maps as shown below and a send port configured to receive Article message. After dropping the message at the receive location, the message was suspended. To check the what processing was done on the message before suspending, clicked on the Message Flow and it was clear that the ItemToProduct map was applied and the message was su...