I try to call WebApi (ASP.Net) from SOAP::Lite lib (perl) by passing WSDL URL via method 'service':
<code>
use SOAP::Lite;
SOAP::Lite->new->service( 'http://....wsdl' )->_call( 'method', @params );
</code>
I have recieved answer, but all elements in response are processed as 'string', but not else;
For example, I expect 1
or 0
for bool types, but get strings true
or false
.