SOAP请求正在使用SOAP UI但不适用于PHP

I am implementing SOAP API in PHP. I have SOAP UI(http://soapui.org/.) which is based on Java. I created a new project and run a request to get data. I am getting correct data here. But when I implement this request PHP it is showing error "No XML data received"

I am using the following code:

<?php
$client = new SoapClient("http://ws.spexlive.net/service/soap/catalog?appId=225915&wsdl", array('trace' => 1, "exceptions" => 0));
$result = $client->GetCategories(array('catalog' => 'na', 'siteId' => 0, 'locale'=>"en_us", 'type'=>"default"));

echo "====== REQUEST HEADERS =====" . PHP_EOL;

var_dump($client->__getLastRequestHeaders());

echo "========= REQUEST ==========" . PHP_EOL;

var_dump($client->__getLastRequest());

echo "========= RESPONSE =========" . PHP_EOL;

var_dump($result);

Thanks