我在尝试拨打肥皂电话时遇到此错误。
The SOAP action specified on the message, '', does not match the HTTP SOAP Action.
当我打电话给$service->SearchTouristItems($sti);
时(此功能在下面),我得到了上述错误,我不明白为什么。
以下是我正在使用的代码。
//我用http://www.urdalen.no/wsdl2php/创建了扩展SoapClient的TCS2Service
$service = new TCS2Service() ;
$sd = new ServiceDescriptor;
$sd->UniqueIdentifier = 'xxxxxxxxx-xxxxx-xxxx-xxxxx-xxxxxx';
$stic = new SearchTouristItemCriteria;
$stic->SearchString = array ('dublin') ;
$sti = new SearchTouristItems;
$sti->searchTouristItemCriteria = $sd;
$sti->serviceDescriptor = $stic;
$result = $service->SearchTouristItems($sti);
echo "<pre>";
print_r($result);
echo "</pre>";
SearchTouristItems looks like this
/**
*
*
* @param SearchTouristItems $parameters
* @return SearchTouristItemsResponse
*/
public function SearchTouristItems(SearchTouristItems $parameters) {
return $this->__soapCall('SearchTouristItems', array($parameters), array(
'uri' => 'http://tempuri.org/',
'soapaction' => ''
)
);
}
这是客户的启动
public function TCS2Service($wsdl = "http://www.example.com/services/TCS2Service.svc", $options = array( 'soap_version' => SOAP_1_2,
'exceptions' => true,
'trace' => 1,
'cache_wsdl' => WSDL_CACHE_NONE,)) {
foreach(self::$classmap as $key => $value) {
if(!isset($options['classmap'][$key])) {
$options['classmap'][$key] = $value;
}
}
parent::__construct($wsdl, $options);
}
答案 0 :(得分:0)
虽然不确定,但代码中'soapaction' => ''
的值会被提供的参数替换。我没有使用PHP调用Web服务的经验所以只是想一想。
答案 1 :(得分:0)
我认为你的ws-addressing没有打开。请打开ws- 寻址并再次检查。
答案 2 :(得分:0)
我会做什么:
检查WSDL中是否定义了SOAP操作:查找address location="
尝试另一个WSDL到php转换器
发送WSDL网址,以便我可以在我身边试用