Does anyone know where I can find a good example of using an OFX wsdl file with C #?

I am looking for a good example of OFX combined with C #. I am looking for examples, but I can not find them. I have never worked with OFX, and the code has little documentation, and I have never worked with wsdl before. I know how to incorporate it into a project, but actually using the code is confusing. Any help would be appreciated.

+3
source share
1 answer

For a WSDL client, you can use WSDL.EXE to create proxy classes on the client side.

wsdl /out:myProxyClass.cs http://hostServer/WebserviceRoot/WebServiceName.asmx?WSDL

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));
+1
source

All Articles