„Błąd pobierania treści http” za pomocą php SoapClient

Mam problem z przesłaniem danych użytkownika na serwer za pomocą Soap. Wszystko co dostaję to:
Błąd Pobieranie treści http, brak długości treści, zamknięcie połączenia lub podzielenie danych Czy robię coś źle?

$client = new SoapClient(APPPATH.'my.wsdl',array(
    'login' => 'user',
    'password' => 'pass',
    'location' => 'http://gimmeyadata.com/crm/regserv?wsdl',
    'trace' => true,
    )
);
$result = $client->register(array(
    'Email' => '[email protected]',
    'Gender' => 'm',
    'First name' => 'Oliver',
    'Last name' => 'Liermann',
    'Language code' => 'de-de',
));

Nagłówek ostatniej odpowiedzi: HTTP / 1.1 200 OK X-SiteConfidence: jenppb601 Content-Location: http: //.***.*/general/html/pages/layouts/columnContent.jsp Content-Language: de-DE Content-Type: text / html; charset = UTF-8 Data: piątek, 18 maja 2012 15:50:01 GMT Transfer-Encoding: chunked Połączenie: keep-alive Połączenie: Transfer-Encoding Set-Cookie: JSESSIONID = 0a6d28f530d798c4676f59494491a82035d98e25ff6f.e38Ka38Sax4TbO0MaheKbhaTbh8Te6fznA5Pp7ftolbGmkTy; path = / Cache-Control: prywatny

Ostatni nagłówek żądania: POST /html/de_DE/index_DE/index.html Host HTTP / 1.1:.**.* Połączenie: Keep-Alive User-Agent: PHP-SOAP / 5.2.13 Content-Type: text / xml; charset = UTF-8 SoapAction: "" Content-Length: 937 Autoryzacja: Podstawowe c3RyZ19ka29zaGF2ZTpsNFB3TVZqDlRhZUc1cg == Cookie: JSESSIONID = 0a6e28e930d70301b8f6dd3e8a2598bff7cef065809a.e38Pa3mLbx4Oci0Mah4Qb34TbxmOe6fznA5Pp7etoltGmkTy; BIGipServerPirobase = 254438666.20480.0000;

Wersja PHP: 5.2.13

questionAnswers(2)

yourAnswerToTheQuestion