I've a webservice this is the wsdl
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Header>
<ValidationSoapHeader xmlns="KyanOnlineSaleService">
<Token>[string?]</Token>
</ValidationSoapHeader>
</Header>
<Body>
<GetItemList xmlns="KyanOnlineSaleService">
<StartDate>[string?]</StartDate>
<EndDate>[string?]</EndDate>
</GetItemList>
</Body>
</Envelope>
this is my code
$url = 'mywebservice/KyanOnlineSaleService.asmx?WSDL';
$client = new SoapClient($url);
$result = $client->GetItemList();
print_r($result);
I need to send the token code to this page . how can I do so ?