Home » U++ Library support » U++ MT-multithreading and servers » HttpRequest cannot get the server [SOLVED]
HttpRequest cannot get the server [SOLVED] [message #53089] |
Mon, 24 February 2020 23:07 |
|
forlano
Messages: 1202 Registered: March 2006 Location: Italy
|
Senior Contributor |
|
|
Hello,
I spent all the day trying to figure out this problem but with no result. Perhaps it is not U++ related.
So far with the following code
String url = "some_valid_url";
HttpRequest r(url);
r.KeepAlive(true);
String content = r.Execute();
if(r.IsFailure())
{ Exclamation("error");
r.Close();
return;
}
r.Close();
Exclamation(content);
I was able to get the content of the site at the given url. Now if I use
url = "http://www.vegaresult.com/vr/index.php";
or
url = "https://www.vegaresult.com/vr/index.php";
HttpRequest give an error (IsFailure()=true)
However if I paste the url in the browser I can see the site.
That site has a HTTPS protocol and configured as VirtualHost in Apache.
I wonder why HttpRequest is not able to see the site. Could it depend by the server that is in someway badly configured?
Thanks a lot for any answer!
Luigi
[Updated on: Tue, 25 February 2020 09:05] Report message to a moderator
|
|
|
Goto Forum:
Current Time: Fri Nov 01 00:38:57 CET 2024
Total time taken to generate the page: 0.01348 seconds
|