6 use Sip::Configuration;
8 my $conf = Sip::Configuration->new("SIPconfig.xml");
9 my $ils = ILS->new($conf->{institutions}->{$code});
10 print "XML for $code: ", Dumper($conf->{institutions}->{$code}), "\n";
11 print "ILS for $code: ", Dumper($ils), "\n";
12 print "\$ils->checkout_ok(): ", ($ils->checkout_ok() ? "Y" : "N"), "\n";
13 print "\$ils->checkin_ok() : ", ($ils->checkin_ok() ? "Y" : "N"), "\n";
14 print "\$ils->offline_ok() : ", ($ils->offline_ok() ? "Y" : "N"), "\n";