I'm trying to send some simple logging information with QHttp.

Say if you type the following into your favorite web browser the logging will operate properly

Qt Code:
  1. http://www.myCompany.com/myApp/myAppIns.php?source=xxx&object=yyyy
To copy to clipboard, switch view to plain text mode 

I tried the following but it does not seem to work:

Qt Code:
  1. QHttp theHttp(this);
  2. theHttp.setHost("www.myCompany.com");
  3. theHttp.get("/myApp/myAppIns.php?source=xxx&object=yyyy");
To copy to clipboard, switch view to plain text mode 
Any ideas of what I am doing wrong?