Hi.
I believe the way the parameters are correct.
I would send the authentication header information. Then I call the operation by sending string parameters.
request as follows:
Request
POST /service.asmx HTTP/1.0
Host: sonucservis.osym.gov.tr
User-Agent: NuSOAP/0.7.3 (1.114)
Content-Type: text/xml; charset=UTF-8
SOAPAction: "
https://sonucservis.osym.gov.tr/SonucGetir"
Content-Length: 735
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="
http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="
http://www.w3.org/2001/XMLSchema" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="
http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns9742="
https://sonucservis.osym.gov.tr">
<SOAP-ENV:Header>
<AuthenticationHeader xmlns="
https://sonucservis.osym.gov.tr">
<KullaniciAdi>sting username</KullaniciAdi>
<Sifre>string password</Sifre>
</AuthenticationHeader>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<SonucGetir xmlns="
https://sonucservis.osym.gov.tr/">
<SinavId>string param</SinavId>
<SinavYili>string param</SinavYili>
<SinavDonemi>string param</SinavDonemi>
<TcKimlikNo>string param</TcKimlikNo>
</SonucGetir>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
and follows response :
Response
HTTP/1.1 500 Internal Server Error
Date: Thu, 17 Dec 2009 08:21:45 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Cache-Control: private
Content-Type: text/xml; charset=utf-8
Content-Length: 441
<?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>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>Server was unable to process request. ---> Object reference not set to an instance of an object.</faultstring>
<detail />
</soap:Fault>
</soap:Body>
</soap:Envelope>
perhaps related to the use of proxy within nusoap may be a problem?
Thank you for everything.