React Quickly to Fraudulent Credit Card Charges using ASP.NET, OFX, and RSS
page 3 of 5
by Eric Madariaga
Feedback
Average Rating: This article has not yet been rated.
Views (Total / Last 10 Days): 23478/ 47

Configuring the IBiz Integrator OFX Components

After setting some basic feed properties, we are going to want to set some information on the IBiz Integrator OFX components. 

In this example we are going to connect to American Express and download the transaction information for a specific account.  Connecting and downloading transaction information from Credit Card companies is entirely encapsulated in the CCStatement component.

Code Listing 2

nsoftware.IBizOFX.Ccstatement card = new nsoftware.IBizOFX.Ccstatement();

card.OFXUser        = "[User Name]"; 
card.OFXPassword    = "[Password]"; 
card.FIUrl          = "https://www99.americanexpress.com/myca/ofxdl/us/download?" + 
                      "request_type=nl_desktopdownload;" 
card.FIId           = "3101"; 
card.FIOrganization = "AMEX"; 
card.OFXAppId       = "Money"; 
card.OFXAppVersion  = "1400"; 
card.CardNumber     = "[CardNumber]"; 
card.StartDate      = ""; 
card.EndDate        = ""; 

The OFX User and Password above represent the username and password used to login to American Express online for account management.  Most credit card companies use the same user name and password for OFX retrieval as they do for online access.  Some companies however require a special registration which provides a different user name and password for OFX integration.  Follow the instructions for connecting with Quicken or Microsoft Money to find out about any special requirements for your financial institutions.  

The Financial Institution properties (FI properties above) are all institution specific.  These are required in order to connect to and download OFX data.  If you have trouble finding the FI data for your bank or credit card account, contact /n software support for help finding the connection information.

In addition, we have set the OFXAppId and OFXAppVersion to replicate the values that Microsoft Money sends to retrieve transaction information.  This is not a required step, however some financial institutions will only accept request from trusted clients.

Finally, set the CardNumber, StartDate, and EndDate to define the transaction set.  CardNumber is used to tell American Express which cards transactions to provide in the event that you have multiple American Express cards.  By leaving StartDate and EndDate empty, American Express will send all of the previous transactions still available on the server. 

Why download the entire transaction set?  Since this is a process that happens virtually in the background, this application doesn’t really concern itself with limiting the amount of data returned. In addition we are taking advantage of some RSS feed readers' abilities to only show new RSS items. Since Credit Card transactions don’t change, only the new transactions show up as new items through the feed reader. Downloading smaller transaction sets based on the last downloaded transactions is certainly a feature that can be integrated in the future.


View Entire Article

User Comments

Title: Help please...   
Name: Michael G
Date: 2007-01-10 5:18:05 PM
Comment:
Great article. I have downloaded OFX integrator and RSS. Is it possible for you to provide the source. n/software provides one example. Also, I want to try my own accounts for test. I have not been able to find the additional information to populate the parameters.






Community Advice: ASP | SQL | XML | Regular Expressions | Windows


©Copyright 1998-2024 ASPAlliance.com  |  Page Processed at 2024-04-26 2:51:08 AM  AspAlliance Recent Articles RSS Feed
About ASPAlliance | Newsgroups | Advertise | Authors | Email Lists | Feedback | Link To Us | Privacy | Search