Where can I get sample x files for testing?

I am creating a php application using Ofx Parser Class from http://www.phpclasses.org/package/5778-PHP-Parse-and-extract-financial-records-from-OFX-files.html . But where can I get a sample x file to use this class and test my application?

+6
ofx
source share
4 answers

Try to find "filetype: ofx" in google. I found a couple there. If you need a whole group for a more complete test, I don’t know.

+6
source share

The easiest way is to have your own bank account that supports downloading. But you are right; it is surprisingly hard to find any of the simplest cases online.

I dug this article from IBM developerWorks , which includes a quick sample. This is when parsing x with php and useful shows the difference between the well-formed XML version ofx and the version of the original tag, which you often find when downloading from different banks, but even this sample is only one output and one deposit.

+3
source share

These are the two links I used. The first one deals with the structure of the andx file, and the second gives you connection information for financial institutions.

http://www.ofx.net/

http://www.ofxhome.com/

+1
source share

Try using https://github.com/wesabe/fixofx . It has a script called fakeofx.py

fakeofx.py script generates real OFX for testing and demo purposes. You can create some fake OFX files using a script, and upload them to Wesabe to try or demonstrate this without showing your real account information to anyone.

The script uses some real demographic data to make the fake transaction that it lists looks real, but otherwise it is not at all sophisticated. He will arbitrarily choose to create a check or credit card statement and has no parameters.

0
source share

All Articles