I m trying to create a SOAP Server application that is a stand alone application (no need for IIS to be configured). The problem is that I get this error when trying to compile:
I get the error
SockApp was compiled with a different version of IdTCPServer
Now this is because Delphi 2006 ships with INDY 10 but SockApp appear to have been compiled with INDY 9.
The read me states:
- Include $(BDS)LibIndy9 in the Library path and remove $(BDS)LibIndy10. However, this forces the application to use Indy9.
- Compile IndySockTransport and sockapp and put it in $(BDS)LibIndy10.
Option 1 works, but I need to use some of the INDY 10 features so this is not a great option for me.
Does anyone know how to implement option 2? i.e. how do I compile IndySockTransaport and sockapp?