PHP sunucusu HTTP Header SOAPAction değerini tanımadı

0 Cevap php

Benim ilk SoapClient yapıyorum ve ben Başlıklarla şaşırıp, ben bir yanıt alıyorum ve benim isteği baktığınızda bir sabun var: vücut ama hiçbir sabun: başlıkları. Web servis ihtiyaçlarını 3 parametre vardır

1.UserName
2.Password 3.errorMessage

Bu benim kurdunuz kodudur.

$SOAPAction = 'http://localhost/DriveAwayPriceCalculation/PriceCalculation'; //Namespace of the WS. 
//


$SoapHeaders = array('User123' => $UserName, 
               'Password123' => $Password,
               '' => $errorMessage);

$client = new nusoap_client("https://test.com/CalculationWS.asmx?WSDL", false, $UserName, $Password, $errorMessage);


$headers = new SoapHeader('http://localhost/DriveAwayPriceCalculation/PriceCalculation', true, $SoapHeaders); 

As I said I am just starting out in SOAP (and PHP) so if you could help, it would be great. Thanks

0 Cevap