adding openncip / opensip SIP2 service
[koha.git] / C4 / SIP / SIPconfig.xml
1 <acsconfig xmlns="http://openncip.org/acs-config/1.0/">
2
3   <error-detect enabled="true" />
4
5 <!-- Set Net::Server::PreFork runtime parameters -->
6 <!--  <server-params
7            min_servers='1'
8            min_spare_servers='0' /> -->
9   
10   
11   <listeners>
12     <service
13       port="0:8080/tcp"
14       transport="http"
15       protocol="NCIP/1.0" />
16
17     <service
18       port="8023/tcp"
19       transport="telnet"
20       protocol="SIP/1.00"
21       timeout="60" />
22
23     <service
24       port="127.0.0.1:6001/tcp"
25       transport="RAW" 
26       protocol="SIP/2.00"
27       timeout="60" />
28   </listeners>
29
30   <accounts>
31       <login id="koha" password="koha" institution="kohalibrary">
32       </login>
33       <login id="koha2" password="koha2" institution="kohalibrary" />
34       <login id="lpl-sc" password="1234" institution="LPL" />
35       <login id="lpl-sc-beacock" password="xyzzy"
36              delimiter="|" error-detect="enabled" institution="LPL" />
37   </accounts>
38
39 <!-- Institution tags will hold stuff used to interface to -->
40 <!-- the rest of the ILS: authentication parameters, etc.  I -->
41 <!-- don't know what yet, so it'll just be blank.  But there -->
42 <!-- needs to be one institution stanza for each institution -->
43 <!-- named in the accounts above. -->
44 <institutions>
45     <institution id="kohalibrary" implementation="ILS" parms="">
46           <policy checkin="true" renewal="false"
47                   status_update="false" offline="false"
48                   timeout="600"
49                   retries="3" />
50     </institution>
51
52     <institution id="LPL" implementation="ILS">
53     </institution>
54 </institutions>
55 </acsconfig>