]> git.evergreen-ils.org Git - working/SIPServer.git/blob - SIPconfig.xml
Update to current default EG values.
[working/SIPServer.git] / SIPconfig.xml
1 <!--
2 #
3 # Copyright (C) 2006-2008  Georgia Public Library Service
4
5 # Author: David J. Fiander
6
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of version 2 of the GNU General Public
9 # License as published by the Free Software Foundation.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public
17 # License along with this program; if not, write to the Free
18 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19 # MA 02111-1307 USA
20
21 -->
22 <acsconfig xmlns="http://openncip.org/acs-config/1.0/">
23
24   <error-detect enabled="true" />
25
26   <!-- Set Net::Server::PreFork runtime parameters -->
27   <server-params
28            min_servers='1'
29            min_spare_servers='0' />
30   
31   
32   <listeners>
33     <service
34       port="0:8080/tcp"
35       transport="http"
36       protocol="NCIP/1.0" />
37
38     <service
39       port="8023/tcp"
40       transport="telnet"
41       protocol="SIP/1.00"
42       timeout="60" />
43
44     <service
45       port="127.0.0.1:6001/tcp"
46       transport="RAW" 
47       protocol="SIP/2.00"
48       timeout="60" />
49   </listeners>
50
51   <accounts>
52       <login id="scclient" password="clientpwd" institution="UWOLS">
53       </login>
54       <login id="scclient-2" password="clientpwd-2"
55              institution="UWOLS" />
56       <login id="lpl-sc" password="1234" institution="LPL" />
57       <login id="lpl-sc-beacock" password="xyzzy"
58              delimiter="|" error-detect="enabled" institution="LPL" />
59   </accounts>
60
61 <!-- Institution tags will hold stuff used to interface to -->
62 <!-- the rest of the ILS: authentication parameters, etc.  I -->
63 <!-- don't know what yet, so it'll just be blank.  But there -->
64 <!-- needs to be one institution stanza for each institution -->
65 <!-- named in the accounts above. -->
66 <institutions>
67     <institution id="UWOLS" implementation="ILS" parms="">
68           <policy checkin="true" renewal="false"
69                   status_update="false" offline="false"
70                   timeout="600"
71                   retries="3" />
72     </institution>
73
74     <institution id="LPL" implementation="ILS">
75     </institution>
76 </institutions>
77 </acsconfig>