Xpriori::XMS::Soap - SOAP wrapper for Xpriori::XMS::Svc.


Xpriori-XMS documentation  | view source Contained in the Xpriori-XMS distribution.

Index


NAME

Top

Xpriori::XMS::Soap - SOAP wrapper for Xpriori::XMS::Svc.

SYNOPSIS

Top

  #>> Sample for SOAP (Server)
    #!c:/perl/bin/perl
    use strict;
    use Xpriori::XMS::Soap;
    use SOAP::Transport::HTTP;
      SOAP::Transport::HTTP::CGI   
      -> dispatch_to('Xpriori::XMS::Soap')     
      -> handle;

  #>> Sample for SOAP (Client)
      use strict;
      use SOAP::Lite qw(trace);
      my $oSoap = SOAP::Lite
          -> uri('Xpriori::XMS/Soap')
          -> proxy('http://localhost/cgi-bin/neo/NeoCoreSvcPerl.pl');

      my $sConn =  $oSoap->login()->result;
      print "CONN:$sConn\n";
      print $oSoap->queryXML('', '/ND//books')->result;
      print $oSoap->logout($sConn)->result;

DESCRIPTION

Top

Xpriori::XMS::Soap is a wrapper of Xpriori::XMS::Svc for SOAP.

URL, User and Password should be set in 'NeoCoreSvc.cfg' included in the same directory. See Xpriori::XMS::Svc for methods and more detail.

SEE ALSO

Top

Xpriori::XMS::HTTP

AUTHOR

Top

KAWAI,Takanori kwitknr@cpan.org

COPYRIGHT

Top


Xpriori-XMS documentation  | view source Contained in the Xpriori-XMS distribution.