Re: HTTPS GET using Winsock

2023-04-03 Thread Alan Bourke
Via Winsock specifically ? Why complicate it? -- Alan Bourke alanpbourke (at) fastmail (dot) fm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: https://mail.leafe.com/mailman/listinfo/profox OT-free version of this list:

RE: HTTPS GET using Winsock

2023-04-03 Thread Tracy Pearson
I have used the MSXML ActiveX control in the past. LOCAL xml as MSXML2.XMLHTTP60 xml = CREATEOBJECT("MSXML2.XMLHTTP.6.0") xml.open("GET","https://www.google.com;) xml.send() ?xml.status,xml.statusText * ?xml.responseText These days I do use the Chilkat ActiveX control,

HTTPS GET using Winsock

2023-04-03 Thread Man-wai Chang
Are there free Visual Foxpro source codes that do HTTPS GET via Winsock? The following example does non-SSL HTTP GET: Win32API/sample_383.md at master · VFPX/Win32API · GitHub Winsock: retrieving Web pages using sockets (HTTP, port 80) Retrieved data is stored in a Memo field of a cursor