Guest User

Untitled

a guest
Jun 25th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. use strict;
  2. use warnings;
  3. use SOAP::Lite;
  4. use Devel::Dwarn;
  5.  
  6. {
  7. no warnings 'redefine';
  8. *Data::Dumper::qquote = sub { qq{"$_[0]"} };
  9. }
  10.  
  11. sub SOAP::Transport::HTTP::Client::get_basic_credentials {
  12. return "hinemos" => "hinemos";
  13. }
  14.  
  15. my $wsdl = 'file:MonitorAgentEndpoint.wsdl';
  16. my $client = SOAP::Lite->service($wsdl);
  17. Dwarn $client->getAgentList({});
  18.  
  19. __END__
Add Comment
Please, Sign In to add comment