In
BizTalk server a SOAP header is accomplished by defining a class representing the data in a particular SOAP header and deriving it from the SoapHeader class.
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
call this WebMethod in SOAP::Lite with this Perl code:
use SOAP::Lite;
my $soap = SOAP::Lite
-> uri('http://www.alfredbr.com')
-> on_action( sub { join '/', 'http://www.alfredbr.com', $_[1] } )
-> proxy('http://localhost/Example1/Service1.asmx');
print $soap->HelloWorld()->result;
http://www.athenainfotech.co.uk/free...k-health-check