mrb.
soap ile bir web servisine bağlanarak sadece ilk düğümlere değer gönderebiliyorum mesela
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<KitapAdet xmlns="http://tempuri.org/">
<userName>string</userName>
<password>string</password>
<KitabBilgileri>
<adi>string</adi>
<sayfa>int</sayfa>
<yil>int</yil>
</KitabBilgileri>
</KitapAdet>
</soap:Body>
</soap:Envelope>
userName ve password veri göndreimi yapıyorum
$client = new SoapClient("wsdl adresi");
$result = $client->KitablariGonder(array("userName" => $_POST['ad'], "password" => $_POST['soyad']));

ama KitabBilgileri düğümüne post ile gönderim yapamıyorum
Nasıl yapabilirim yardımcı olabilirmsnz.