2009년 12월 29일 화요일

perl soap

perl SOAP::Lite 설치
# cpan -MCPAN -e shell
cpan> get SOAP::Lite
# cd ~/.cpan/build/SOAP-Lite
# perl Makefile.PL
# make;sudo make install;

soap client
$ vi cli.pl
#!/usr/bin/perl

use strict;
use warnings;
use SOAP::Lite;

print SOAP::Lite->service('http://locahost/wsdl')->hello("test"), "\n";
$ perl cli.pl
hello test


물론 서버는 hello를 호출 하면 hello + string을 돌려준다.