-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or request
Description
WIRE Version
v0.15.0
What were you trying to do?
I'm creating, parsing and validating WIRE files that contains multiple transactions.
What did you expect to see?
A parsed JSON structure containing all my fed wire messages.
What did you see?
A parsed JSON structure containing ONLY the last fed wire message, others are lost.
The problem is, the API JSON is not a list: https://moov-io.github.io/wire/api/#post-/files/create
{
"ID": "3f2d23ee214",
"fedWireMessage": {
"ID": "3f2d23ee214",
...
So how could that hold multiple messages? fedWireMessage should be an array, not an object.
How can we reproduce the problem?
- Call the create API with a WIRE file that contains multiple messages
- Check the response, only one message is returned obviously because it's not an array
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or request
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
adamdecaf commentedon Nov 30, 2023
Yea.. We'll need to make this change. I think a breaking change is appropriate since this is such a major bug.
atonks2 commentedon Nov 30, 2023
Thanks @DennyWeinberg. I'll be addressing this one soon.
DennyWeinberg commentedon Jan 5, 2024
Any news here?
atonks2 commentedon Jan 6, 2024
I've been asking around for sample files to see how bulk/batch files should be formatted, but haven't been able to find anything.
I'll get back to researching this next week.
Denny-g6labs commentedon Apr 25, 2024
Any news here? :)
atonks2 commentedon Apr 25, 2024
I haven't been able to find much info about how batch files should be formatted. Do you have any example files you can share @Denny-g6labs?
atonks2 commentedon May 7, 2024
@Denny-g6labs If you have the ability to run some files through PR #394, any feedback would be appreciated. I'd love to hear how those changes handle files from various financial institutions.
Denny-g6labs commentedon Jan 7, 2025
Hi,
unfortunately I still don't have sample files I can share, as they contain sensitive data.
However, I have some more information:
I hope that helps, I'm going to ask for such a file and describe more in detail what I see, so you get a better idea.
Denny-g6labs commentedon Jan 7, 2025
Here a sample file that the core process software is able to use, there are two transactions in the wire file:

The separator is CRLF (\r\n) in my case.
Denny-g6labs commentedon Jan 7, 2025
Are you able to provide a Docker image with that PR? Unfortunately I'm not good at go and will have issue trying it out without (beta) image.
Denny-g6labs commentedon Jun 23, 2025
Any news here?
Can we merge or create a temporarily docker?