aşağıdaki kodda non-WSDL mode ile servisden veri çekmeye çalışıyorum ancak başarılı olamadım. Found element param0 but could not find matching RPC/Literal part hatası veriyor? Bunun sebebi nedir? $soap = new Zend_Soap_Client(); $soap->setLocation('http://xxxx/WebService') ->setUri('http://xxxx.namespace.com/') ->setOptions(array( 'use' => SOAP_LITERAL, 'style' => SOAP_RPC )) ->setSoapVersion(SOAP_1_1); $p = array("identityNo" => 123); $sonuc = $soap->tahakkukSorgula($p);