我试图接受这个,在 php 中看起来很简单的肥皂调用:
$params->Context->ServiceAccountContext = $serviceAccountContext; //this is a string
$params->Query = "test";
// invoke service
$researchService = new SoapClient($serviceurl);
$response = $researchService->DoFunction($params)->DoFunctionResult;
但似乎我对 SOAP::Lite 的经验是有限的,如下所示:
my $serviceAccountContext ='teststring';
my $soap = SOAP::Lite
-> uri($serviceurl)
-> proxy($serviceurl)
;
my $header = SOAP::Header->name("ServiceAccountContext" =>' $serviceAccountContext', "Query"=>'test');
my $method = SOAP::Data->name('DoFunction');
my $responset = $soap->call($method, $header);
返回一个 404,这是不幸的,因为它在 php 中工作。我觉得我在这里错过了一些非常基本的东西。如果有人能伸出援手,那就太棒了。谢谢。