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! :-)

Replies are listed 'Best First'.
Re^2: How to use Perl instead of Coldfusion.
by flexvault (Monsignor) on May 13, 2013 at 18:37 UTC

    Hello space_monk,

    Yes, the coldfusion code is initiating a search and then up to 75 responses are received in XML format.

    Thank you

    "Well done is better than well said." - Benjamin Franklin