我正在尝试修改soapenv:Header以在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>做同样的事情.
如果有人可以提供帮助,将不胜感激:-)