I try connect to SOAP server on IIS, which return response ($proxy->response):
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<IsLegalResponse xmlns="http://tempuri_org/">
<IsLegalResult>Блок питания Thermaltake ATX 420 W Active PFC ,2 FAN;
</IsLegalResult>
</IsLegalResponse>
</soap:Body>
</soap:Envelope>
|
But $result ($result = $proxy->IsLegal($parameters); ) have only question mark (?????????) instead utf-8 encoded curillic text
Array ( [IsLegalResult] => ???? ??????? Thermaltake ATX 420 W Active PFC ,2 FAN; |
HELP please!