Hi,
I am trying to make a http request to another website inside a controller method. I searched on net but I didn't got any working sample.
Following I what I am trying to achieve (in php code):
$r = new HttpRequest('http://community.bba.org/home', HttpRequest::METH_GET);
$r->addQueryData(array('SessionID' => $arrGetParams['SessionID']));
try {
$r->send();
} catch (HttpException $ex) {
}
But that didn't work. Please guid me how can I accomplish this task?
Thanks