I'd suggest contacting the WRC to help look at the problem you're seeing with unwanted characters in the output. EnsLib.RecordMap.Operation.BatchFileOperation does what you've described, so it would be best to get this working for your use case if possible.
Looking at the code you posted...
pRequest.Records.GetAt(1)
This will just get you the first record from the batch. If you want to get a specific field from a record you would want to use something like:
pRequest.Records.GetAt(1).FieldName
- Log in to post comments

