Hi,
This is (almost?) the final piece of the jigsaw that I'd like to get sorted before I get stuck into my app. Chess endgames with 5 and 6 pieces are fully calculated and stored in large databases. The 5-piece ones are online at Tablebase WebService - Lokasoft - Home of ChessPartner. This page has the following VB code to access the database using the MSSOAP toolkit.
What is the B4A equivalent to this code? I've tried looking at httpUtils2 but I'm not getting very far.
Thanks in advance.
John Harbour
Bedford, UK
This is (almost?) the final piece of the jigsaw that I'd like to get sorted before I get stuck into my app. Chess endgames with 5 and 6 pieces are fully calculated and stored in large databases. The 5-piece ones are online at Tablebase WebService - Lokasoft - Home of ChessPartner. This page has the following VB code to access the database using the MSSOAP toolkit.
B4X:
Dim Client As SoapClient
Dim Result As String
Set Client = New SoapClient
Client.mssoapinit "http://www.lokasoft.nl/tbweb/tbapi.wsdl"
Result = SoapClient.ProbePosition("6k1/6p1/8/8/8/8/4P2P/6K1 w - -")
What is the B4A equivalent to this code? I've tried looking at httpUtils2 but I'm not getting very far.
Thanks in advance.
John Harbour
Bedford, UK