I recieve a message containing the mutiple flat file “defintions”, file name, file path and schema name to parse with. I need to create a custom pipeline component that parses this file, loads the flat file and send it to the flat file disassembler and set the schemas dynamicly.
Can I extend the Flat File (FFDasmComp) , iterate and load each of the flat files and call the base disassemble mutiple times?
base.DocumentSpecName = this.DocumentSpecName;
base.Disassemble(pContext, pInMsg);
…will this work? any ideas?
I was going to call the pipeline directly from the previuos Orch, but the pipeline then returns the whole message as an enumeration, which would be huge (large message processing) so i decided to drop the configuration message into a folder and now I need to parse it. It contains the defintion for sevearl files i need to parse. Should I break this up and send one config message per file?
Thank You,
Will Weaver