我正在尝试修改soapenv:标头以在我的soap请求中包含寻址
my $header=SOAP::Header->name("Header")->prefix("soap")->uri("http://www.w3.org/2005/08/addressing");
当我发送请求时:
print $soap->call($header, $security->value(\$userToken, $action, $message))->result;
我收到以下...
<"soap:Header soap:Header xmlns:soap="http://www.w3.org/2005/08/addressing" />
我需要尝试覆盖原来的<soap:Header>
我需要对<soap:Envelope>
如果有人可以提供帮助将不胜感激:-)