Merhaba

PHP ile SOAP client olusturmaniz gerekiyor oncelikle

Ornegin;

<?php 
  $client = new SoapClient("stockquote1.wsdl",array( 
    "trace"      => 1, 
    "exceptions" => 0)); 
  $client->getQuote("ibm"); 
  print "<pre>\n"; 
  print "Sorgu :\n".htmlspecialchars($client->__getLastRequest()) ."\n"; 
  print "Cevap:\n".htmlspecialchars($client->__getLastResponse())."\n"; 
  print "</pre>"; 
?>
Kullanici adi sifre kullanimi
$client = new SoapClient("some.wsdl", array('login'          => "kullanici", 
'password'       => "sifre"));

Isine yarayabilecek bir class ise cok kullanisli; buradan

Saygilar.