For a WSDL client, you can use WSDL.EXE to create proxy classes on the client side.
wsdl /out:myProxyClass.cs http:
You can watch OFXSharp . This is the open C # parser for the OFX protocol.
var parser = new OFXDocumentParser();
var ofxDocument = parser.Import(new FileStream(@"c:\ofxdoc.ofx", FileMode.Open));
source
share