Ok.. I am using code to send items to a receive pipeline.
I use a loop with:
RcvPipeOutput.MoveNext()
Then inside the loop I set the message with code as follows:
FFMessage = null;
RcvPipeOutput.GetCurrent(FFMessage);
Then I send it to a web service to be put into a database.
When running the orch it selects and sends every other record. So for 10 records… I only get 5 into the database (and it is every other). I change the total count and it changes the records returned and is always every other.
Its probably something stupid in my setup… but any suggestions? If I output the message to a folder on disk before it goes to the receive pipeline it has 10 records.. so I know its getting to the loop at least with proper counts.
Thanks