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
13 use XML
::Simple
qw(:strict);
16 my $parser = new XML
::Simple
( KeyAttr
=> { login
=> '+id',
18 service
=> '+port', },
19 GroupTags
=> { listeners
=> 'service',
21 institutions
=> 'institution', },
22 ForceArray
=> [ 'service',
25 ValueAttr
=> { 'error-detect' => 'enabled',
26 'min_servers' => 'value',
27 'max_servers' => 'value'} );
29 my $ref = $parser->XMLin(@ARGV ?
shift : 'SIPconfig.xml');