Bug 7607: (follow-up) Address OPAC and limits
[koha.git] / C4 / SIP / xmlparse.pl
blob0d8460f382fd8167a226cdd3f7a655b0eaddbeb5
1 #!/usr/bin/perl
3 # This file reads a SIPServer xml-format configuration file and dumps it
4 # to stdout. Just to see what the structures look like.
6 # The 'new XML::Simple' option must agree exactly with the configuration
7 # in Sip::Configuration.pm
9 use strict;
10 use warnings;
11 use English;
13 use XML::Simple qw(:strict);
14 use Data::Dumper;
16 my $parser = XML::Simple->new( KeyAttr => { login => '+id',
17 institution => '+id',
18 service => '+port', },
19 GroupTags => { listeners => 'service',
20 accounts => 'login',
21 institutions => 'institution', },
22 ForceArray=> [ 'service',
23 'login',
24 'institution' ],
25 ValueAttr => { 'error-detect' => 'enabled',
26 'min_servers' => 'value',
27 'max_servers' => 'value'} );
29 my $ref = $parser->XMLin(@ARGV ? shift : 'SIPconfig.xml');
31 print Dumper($ref);