ofx

Importing OFX files

I am trying to import financial information using the OFX protocol which is used by Quicken and Money. I have had a pretty good look around for an open source library but so far have come up empty. Does anyone know of anything? ...

xsd.exe generates duplicate attributes when run on OFX2 schema

Using the command line: "xsd.exe" "OFX 2.1.1 schema/OFX2_Protocol.xsd" /c /namespace:OFX /nologo" The resulting C# source file fails to build with these errors: D:\blah\OFX2_Protocol.cs(19,6): error CS0579: Duplicate 'System.CodeDom.Compiler.GeneratedCodeAttribute' attribute D:\blah\OFX2_Protocol.cs(20,6): error CS0579: Duplicate 'Sy...

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 wondering if there's a way to get XmlSerialiser to ignore that. I know I could go through the file and wipe out that line but it would be s...

How do I format DateTime or TimeZone/TimeZoneInfo to display Three letters?

I'm working with a spec that calls for a peculiar Datetime format that I haven't necessarily had to work with yet. At Process time, an OFX (1 not 2) datetime must be stamped (either DTCLIENT or DTSERVER) in a format like this: 20071015021529.000 however, in the examples it is shown: 20071015021529.000[-8:PST] I don't have a prob...

Is there a better Regex for parsing DTD

I've got the DTD for OFX 1.03 (their latest version despite having developed and released 1.60, but I digress...) I would like to use regex to have groups that split an entity, element, other tags into its parts for further processing such that I would take a tag like this: <!ENTITY % ACCTTOMACRO "(BANKACCTTO | CCACCTTO | INVACCTTO)"> ...

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 data using this example So, I have this file that I want to use as the request data. Let's call it req.ofxsgml: FXHEADER:100 DATA:OFXSGML ...

Open Financial Exchange (OFX) Banking API

Hi, First of all I apologize if this question is asked before. I am planning to develop a small application which displays my bank account details(like Mint.com) where I can customize the display of my own. I want to know how and where to start. Where these OFX API's are available? Are they free or we need to pay and get access to th...

How to parse a malformed xml (ofx) with ofx4j ?

Hello, 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 it using an instance of net.sf.ofx4j.io.OFXReader Ok but how do i do ? It also states the following: if you want to unmarshal the...

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 Xml transformation working because the .Net XslCompiledTransform object insists on interpreting the output as an XML document (which is fai...

Implementing OFX specification with javascript

Hey all, I am working on a personal project and need to retrieve financial data. After looking around how this is normally done it seems you can pay lots of money and license a service like Yodlee to get this data for you or you can implement a OFX client like wesabe has to communicate with financial institutions. Seeing as I don't ha...

where to get sample ofx files for testing?

I am building 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 ofx file to use this class and test my application? ...

OFX File parser in C#

Hi, I am looking for an OFX file parser library in C#. I have search the web but there seems to be none. Does anyone know of any good quality C# OFX file parser. I need to process some bank statements files which are in OFX format. Update I have managed to find a C# library for parsing OFX parser. Here is the link ofx sharp. This cod...

OFX -- Second Level Security?

We're working on a site that will make use of the OFX standard to provide access to customer financial data. However, for security we make use of secret question/secret answer, machine tagging, etc. Does the OFX standard provide any mechanisms for security beyond just the simple username/password? I've taken a look at the schema and s...

Are there any libraries or examples of how to handle OFX on the iPhone?

I'm working on a money-handling iPhone application and would like to interact with sources using the Open Financial Exchange (OFX) standard. Information about this standard is presented here and here. Are there any open source libraries, examples, or tutorials out there about how to interact with OFX on an iPhone or in Objective-C? ...