Sending Headers requires an extra few steps:

<?php
require_once('SOAP/Client.php');

$client =& new SOAP_Client(
    
'http://www.caraveo.com/soap_interop/server_round2.php');

$header =& new SOAP_Header(
        
'{http://soapinterop.org/echoheader/}echoMeStringRequest',
        
'string',
        
'This is a test header',
        
1/* defaults to zero */
        /* this is the default */
        
'http://schemas.xmlsoap.org/soap/actor/next'  
        
);

$client->addHeader($header);

$response $client->call('echoVoid'$p NULL);
print 
$client->wire;
?>
Output of the Wire (Outgoing and Incoming data):

OUTGOING:

POST /soap_interop/server_round2.php HTTP/1.0
User-Agent: PEAR-SOAP 0.6.1
Host: www.caraveo.com
Content-Type: text/xml; charset=UTF-8
Content-Length: 702
SOAPAction: ""

<?xml version="1.0" encoding="UTF-8"?>

<SOAP-ENV:Envelope
 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
 xmlns:ns4="http://soapinterop.org/echoheader/"
 SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Header>

<ns4:echoMeStringRequest
    xsi:type="xsd:string"
    SOAP-ENV:actor="http://schemas.xmlsoap.org/soap/actor/next"
    SOAP-ENV:mustUnderstand="1">
      This is a test header
</ns4:echoMeStringRequest>
</SOAP-ENV:Header>
<SOAP-ENV:Body>

<echoVoid/>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


INCOMING

HTTP/1.1 200 OK
Date: Tue, 25 Jun 2002 20:18:34 GMT
Server: Apache/1.3.19 (Unix)  (Red-Hat/Linux) PHP/4.1.2
X-Powered-By: PHP/4.1.2
Content-Length: 614
Connection: close
Content-Type: text/xml; charset=UTF-8

<?xml version="1.0" encoding="UTF-8"?>

<SOAP-ENV:Envelope
  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:ns4="http://soapinterop.org/"
  SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Header>

<echoMeStringResponse xsi:type="xsd:string">
  This is a test header
</echoMeStringResponse>

</SOAP-ENV:Header>
<SOAP-ENV:Body>

<ns4:echoVoidResponse/>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>