i try to fetch result from www.tadawul.com.sa with php soap client.
but when i try to load that , get nothing just loading page.
here is my code.
$reference = array(
             'companyId' => '*********',
             'secureKey' => '*********'
        );
        $client = new SoapClient('http://www.tadawul.com.sa/Tadawul_WebAPI/services/GetDetailQuote?wsdl');
        $response = $client->getDetailQuoteForCompany($reference);
        var_dump($response);
 
    