]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/examples/oils_sip.xml.example
changed name to prevent clobber on install
[working/Evergreen.git] / Open-ILS / examples / oils_sip.xml.example
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="scclient" password="clientpwd" institution="gapines"/>
32         </accounts>
33
34         <!-- Institution tags will hold stuff used to interface to -->
35         <!-- the rest of the ILS: authentication parameters, etc.  I -->
36         <!-- don't know what yet, so it'll just be blank.  But there -->
37         <!-- needs to be one institution stanza for each institution -->
38         <!-- named in the accounts above. -->
39         <institutions>
40                 <institution id="gapines" implementation="OpenILS::SIP">
41                         <policy checkin="true" renewal="false" 
42                                 status_update="false" offline="false" timeout="600" retries="3"/>
43         
44                         <!-- implementation specific config options go here -->
45                         <implementation_config>
46                                 <bootstrap>/openils/conf/bootstrap.conf</bootstrap>
47                                 <supports>
48                                         <!--
49                                         magnetic media' => 1,
50                                         security inhibit' => 0,
51                                         offline operation' => 0
52                                         -->
53                                 </supports>
54                         </implementation_config>
55         
56                 </institution>
57         
58         </institutions>
59 </acsconfig>