Hi
I recently downloaded your latest Stream API github Repo as I wanted to integrate in your latest change (8th Dec 2020) where you added a cancelled date field to fix the problem with the Limit on Close SP orders.
The current repo builds OK, but it generates an exception when you try to run it.
That would probably be enough to put off a newbie so you could do with fixing the repo. Its a trivial quick fix anyways
2 choices to fix it
Option 1)
The repo is currently set for Net Framework 4.5. Framework 4.5 defaults to SSL TLS V1 (Which Betfair now no longer support)
I think bumping this to 4.6 would fix it as 4.6 defaults to TLS12
Option 2)
You could leave the framework set to version 4.5 and add this line in the init code
Regards Geoff
I recently downloaded your latest Stream API github Repo as I wanted to integrate in your latest change (8th Dec 2020) where you added a cancelled date field to fix the problem with the Limit on Close SP orders.
The current repo builds OK, but it generates an exception when you try to run it.
An exception of type 'System.IO.IOException' occurred in Betfair.ESAClient.dll but was not handled in user code
SSO Authentication - call failed:
SSO Authentication - call failed:
2 choices to fix it
Option 1)
The repo is currently set for Net Framework 4.5. Framework 4.5 defaults to SSL TLS V1 (Which Betfair now no longer support)
I think bumping this to 4.6 would fix it as 4.6 defaults to TLS12
Option 2)
You could leave the framework set to version 4.5 and add this line in the init code
Code:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;


Comment