I'm trying to connect to a SOAP endpoint with SSL
server$ = "api.betfair.com/global/v3/BFGlobalService"
port%=443
SOCK_INIT()
sock% = SOCK_TCPCONNECT(server$, port%)
Everytime I try I get a -1 returned after about 5 seconds (which I guess is the timeout).
Any ideas?
Am I going about this the wrong way?
Thinking about this a little more...
What I think I need is the counterpart to NETWEBGET
Something like a NETWEBSET (which doesn't exist in GLBASIC.... yet)
NETWEBSET("
https://api.betfair.com/global/v3/BFGlobalService", 443, "myxml")
Is there any equivalent, or am I going to have to do something "fruity" in C?
Thanks for any help in this... (hoping).