Hi All,
I'm currently trying to open a HTTPS socket to access a dll which works on HTTP using GET. I'm using LiveLink 9.5 SP1
The code I'm using is;
sock.(Socket.pStreaming) = TRUE
Socket.Connect(sock, request.SERVER_NAME, Str.StringToInteger(request.SERVER_PORT))
Socket.Write(sock, Str.Format("GET %1 HTTP/1.0", strPath))
Socket.Write(sock, Web.CRLF)
Socket.Write(sock, Web.CRLF)
Socket.Flush(sock)
I also tried to use; Socket.kSecuritySSL2 and Socket.kSecuritySSL3 but it says in the API help that this may not be supported;
I saw something on the KC but it didn't really help me;
Can anyone help? all suggestions will be appreciated;
Regards Karl
I'm currently trying to open a HTTPS socket to access a dll which works on HTTP using GET. I'm using LiveLink 9.5 SP1
The code I'm using is;
sock.(Socket.pStreaming) = TRUE
Socket.Connect(sock, request.SERVER_NAME, Str.StringToInteger(request.SERVER_PORT))
Socket.Write(sock, Str.Format("GET %1 HTTP/1.0", strPath))
Socket.Write(sock, Web.CRLF)
Socket.Write(sock, Web.CRLF)
Socket.Flush(sock)
I also tried to use; Socket.kSecuritySSL2 and Socket.kSecuritySSL3 but it says in the API help that this may not be supported;
I saw something on the KC but it didn't really help me;
Can anyone help? all suggestions will be appreciated;
Regards Karl