http://www.perlmonks.org?node_id=1033329


in reply to How to use Perl instead of Coldfusion.

This looks to be some sort of XML/SOAP interface? Anyone? Bueller? :-)

This is incredibly tentative and it is entirely possible I do not know what I'm talking about :-)

use Data::Dumper; use SOAP::WSDL; my %data = ( 'inXML' => "<Envelope><Parameters><Method>Pe +rson</Method> <FirstName>Michael%</FirstName> <LastName>Smith%</LastN +ame> </Parameters></Envelope>" ); my $soap = SOAP::WSDL->new( wsdl => 'https://10.16.47.116/Efiling/EfilingWS?wsdl', ); my $result = $soap->call('getOcscData', %data); print Dumper( $result);
If you spot any bugs in my solutions, it's because I've deliberately left them in as an exercise for the reader! :-)