Ok, I've been starring at the demos for 7 hours now. Can't help thinking that there must be an easier way to do what I am trying to do.
What I am trying to archive is what this PHP code does:
$my_result = file_get_contents('
https://www.3rdparty.com.test.net/someweblibarry.dll?Prop1=value1&Prope2=value2');parse_str($my_result, $arr);
$result['TEST'] = $arr['TEST'];
Am i crazy or your demo requires a lot of of code to replace these 3 lines?
I found a work around here:
http://stackoverflow.com/questions/301546/whats-the-simplest-way-to-call-http-get-url-using-delphiThis simple routine allows me to make a call to the webservice in question (using WinInet) and get it's response (without having to do all the work/events described in your demo).
Richard