TIpClientHttp connects to ordinary sites like google. But it hangs with a secured site.
So e.g., if you try
Code: Select all
Http_o := TIpClientHttp():New( "http://www.google.com" )
, there no issues.
but if you attempt to open https://harbour.github.io, thus:
Code: Select all
Http_o := TIpClientHttp():New( "https://harbour.github.io" )
, it hangs. The specific point that it hangs, is in httpcli.prg, at this line:
Code: Select all
::super:new( oUrl, iif( hb_defaultValue( xTrace, .F. ), "http", xTrace ), oCredentials )
The parent of TIpClientHttp is TIPClient.
I could try and rewrite this line, but wanted to confirm that I'm sending the right parameters (I tried sending a second parameters xTrace := .T.) to the constructor.