alpertuna / php-osym-soap-header

Osym soap servisi için php soap header kütüphanesi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

2017 OSYM SOAP Servisi için PHP SOAP Headerı

Örnek Kullanım

require 'SoapOsymHeader';

$wsdl = "https://vps.osym.gov.tr/Ext/Provider/BilgiServisi/Sonuc?wsdl";
$kullanici = 'kullanici';
$sifre = '******';
$istemci = new SoapClient($wsdl, array(
  // Http basic auth
  'login' => $kullanici,
  'password' => $sifre,
 ));
$istemci->__setSoapHeaders([new SoapOsymHeader($kullanici, $sifre)]);

print_r($istemci->__getFunctions());

$cevap = $istemci->SinavGrupBilgileriniGetir();

print_r($cevap);

About

Osym soap servisi için php soap header kütüphanesi

License:MIT License


Languages

Language:PHP 100.0%