cen-xfs

where can i find XFS API reference and samples?

醉酒当歌 提交于 2019-12-03 21:56:59
I wanna work with CEN/XFS (Extensions for Financial Services), possibly in C#.NET. could anyone tell me how and where can i find XFS last release API reference and samples? and does .NET framework have classes & tools for XFS? Thanks. losingsleeep I found the documentation and API reference: http://www.cen.eu/work/areas/ICT/eBusiness/Pages/CWA15748.aspx 来源: https://stackoverflow.com/questions/4324104/where-can-i-find-xfs-api-reference-and-samples

Implementing NEW service provide (SP) with CEN-XFS compliance

折月煮酒 提交于 2019-12-03 05:12:05
We are trying to develop windows application + device driver with CEN XFS compliance.Also, NOOB to WINDOWS applications. http://en.wikipedia.org/wiki/CEN/XFS simple architectural flow: Windows Application | _____________________ | XFS APIs | (CEN/XFS SDK DLL) | | | XFS SPIs | |_____________________|---XFS Manager | | Service providers (SP) (DEVICE DRIVER) To understand the SP's functionality, we recently took one of the device vendors SP's DLL for accessing their device and we were able to successfully communicate with their device using our windows application(Eclipse MINGW based). Then we

How to dynamically fill the structure which is a pointer to pointer of arrays in C++ implementing xfs

被刻印的时光 ゝ 提交于 2019-11-29 15:33:49
Structure 1: typedef struct _wfs_cdm_cu_info { USHORT usTellerID; USHORT usCount; LPWFSCDMCASHUNIT * lppList; } WFSCDMCUINFO, * LPWFSCDMCUINFO; Structure 2: typedef struct _wfs_cdm_cashunit { USHORT usNumber; USHORT usType; LPSTR lpszCashUnitName; CHAR cUnitID[5]; CHAR cCurrencyID[3]; ULONG ulValues; ULONG ulInitialCount; ULONG ulCount; ULONG ulRejectCount; ULONG ulMinimum; ULONG ulMaximum; BOOL bAppLock; USHORT usStatus; USHORT usNumPhysicalCUs; LPWFSCDMPHCU * lppPhysical; } WFSCDMCASHUNIT, * LPWFSCDMCASHUNIT; Structure 3: typedef struct _wfs_cdm_physicalcu { LPSTR lpPhysicalPositionName;