Also, what value have the report if the address is not in the Error report ?
PS: I set the window Resizeable (ON), and set the Address URL Field “enlargeable” because working with stamp sized windows / fields is a pity. I will unlock the report fiel too: same reason: What if I need to copy the report contents (Error 103 IS ?)
I think I started with HTTP, then go the TCP road (not sure, mlemory is not what it was 50 years ago).
Doculentation lack some explanation (excepted if the prodcuct is targetted to the ones who knows: people using it for money…
Go Figure: in the current documentation, I do not find a line syain how much Ticks for a second (the answer can be 60).
You understand that between the lines of the example…
The documentation gives this description for Ticks: “Returns the number of Ticks (60th of a second) that have passed since the user’s computer was started.” I’d say that’s reasonably clear. The documentation of the newer System.Ticks (that replaces the deprecated old Ticks) explains it as well, see System — Xojo documentation
When you send a request, you’ll often get a response from the server redirecting you to the secure URL if it’s required. The response would contain lines like this:
HTTP/1.1 302 REDIRECT
Date: Mon, 23 May 2024 22:38:34 GMT
Content-Type: text/html; charset=UTF-8
Location: https://new.url.here/
Connection: close
https rather than http is the standard nowadays so you will generally need to establish a secure connection with SSLSocket. When you enter a URL in your browser it will tell you whether it’s a secure connection (and it may even refuse to connect if it isn’t).