views:

326

answers:

1

Hi,

I've built a webservice in php/soap, but I'm running into trouble when sending special characters through soap. Is there any way to specify what encoding to use with soap? Do you have to do it in the wsdl file or the client and server scripts?

A: 

Solved

$options["encoding"] = "iso-8859-1";
$server = new SoapServer("siebelid.wsdl", $options); //and same for client

Above did it

Jonas B