Hi,
Where in the TN flow was your resubmit made? If it is on a file processing trigger (from the message it seems so) it has to handled the file as processed by the file port, which is unlikely at that point.
I usually on have a very slim handler service as the file port service handler so I can than dispatch a full pipeline to a backend processing service, which can more easily be resubmitted. (unless you have large files and/or use streams - which is your case).
[btw, IS writes the pipeline in serialized text format on the log, which is what you are seeing as BasicData:data=>>>BasicData…]
I very much dislike file processing, essentially because of the fragility of the process, and luckily SAG has brought ActiveTransfer to the market, which deals with all these questions in a much more controlled manner.
Basically, I think you may have to increase the robustness of the file handling. When possible, one approach is to move a file from the INBOX folder to the PROCESSING folder, where it can be reprocessed, slimming down the INBOX processing services (which mostly only move files). This way you separate you first TN task in two, separating the responsibilities.
Best Regards,
#webMethods-General#Integration-Server-and-ESB#webMethods