i have problem with calling a Web service in php, the Web service written in c # language. i have sample code in c# that work correctly, this code use System.ServiceModel.ClientBase.
ServiceReference2.ExternalClient t = new ServiceReference2.ExternalClient ();
t.Endpoint.Binding.CloseTimeout = new TimeSpan(500, 0, 0);
t.Endpoint.Binding.SendTimeout = new TimeSpan(500, 0, 0);
t.Endpoint.Binding.ReceiveTimeout = new TimeSpan(500, 50, 0);
t.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = System.ServiceModel.Security.X509CertificateValidationMode.None;
t.ClientCredentials.UserName.UserName = txtUserName.Text;
t.ClientCredentials.UserName.Password = txtPassword.Text;
string ds = t.GetTransfer(txtDate.Text);
i test nusoap and soapclient but i get error messages (bad request or Error Fetching http headers ).
my problem is same as WSSE PHP SOAP Client Header function call and my WSDL like WSDL