Attempting to open a module gives error "Service version is too low."

158 Views Asked by At

I'm attempting to open a session for a particular module, but I get a message saying "This service version is too low.".

How do I get around this? This module is the only module with a service version that is higher than all the other modules, I don't want to go too high that the other modules won't work because the service version will be too high.

The SPI and API version that I'm using is 0x0B020003 which works for all the other modules, except this one which is 3.10.

Any help would be much appreciated, thank you.

1

There are 1 best solutions below

0
On

You don't need to use the highest version available. Use the version you need. If your app doesn`t need any 3.10 specification new features, for example, and 3.00 is all that you need, you are free to open this SPI as 3.00.

To open a SPI as 3.10, use 0x0A03 value meaning 0A = 10, 03 = 3. This version specification is standard, not vendor dependent.

Set dwSrvcVersionsRequired as 0x0A030A03 to open this SPI always as 3.10.

Any SPI can support a versions range. For example, form 3.00 to 3.20. The first thing to do from app is to negociate the version you are going to use (because your app has been compiled using xfsapi.h, xfspin.h from a specific version). WFSStartUp negociates version with XFS manager. WFSOpen negociates version with SPI.

The vendor install the SPI in the ATM, supporting the complete version range. So you can open each SPI using the version you need from the supported version range.