Tagged Questions
3
votes
2answers
404 views
How to parse this OFX file?
this is an original ofx file as it comes from m bank (no worries, theres nothing sensitive, i cut out the middle part with all the transactions)
Open Financial Exchange (OFX) is a
data-stream ...
2
votes
1answer
476 views
How can I transform XML to invalid XML using XSLT?
I need to transform a valid XML document to the OFX v1.0.2 format. This format is more or less XML, but it's technically invalid and therefore cannot be parsed as XML.
I'm having trouble getting my ...
2
votes
2answers
852 views
Grab some ofx data with python
I was trying to use http://www.jongsma.org/gc/scripts/ofx-ba.py to grab my bank account information from wachovia. Having no luck, I decided that I would just try to manually construct some request ...
1
vote
2answers
1k views
How to parse a malformed xml (ofx) with ofx4j?
i am desperatly trying to use the following library : ofx4j. But the documentation relative to parsing an ofx file is a bit lite. It says : If you've got a file or other stream resource, you can read ...
1
vote
2answers
169 views
How do I make XmlSerialiser not start with <?xml ?>?
The file format I'm working with (OFX) is XML-like and contains a bunch of plain-text stuff before the XML-like bit begins. It doesn't like having between the plain-text and XML parts though, so I'm ...
0
votes
1answer
20 views
OFX Parser. Ignore XML Text Reader Exception
I am writing custom OFX -> XML parser on c#.
Currently I am using standard XMLTextReader.
The ofx format might have following structure:
<STATUS>
<CODE>0
<SEVERITY>INFO
...
0
votes
1answer
71 views
A/R & A/P in OFX file
I'm working on exporting data from an existing accounting system written in C# in house and the goal is to have the data usable in multiple accounting packages. For that we've selected the OFX ...