]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/examples/oils_sip.xml.example
LP#1253163: stamping upgrade for authority.in-line-headings
[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
41
42                 <institution id="gapines" implementation="OpenILS::SIP">
43
44                         <!-- This defines what actions we want to allow 
45                                 remote clients (self-check machines) to perform -->
46                         <policy 
47                                 checkin="true" 
48                                 checkout="true" 
49                                 renewal="true" 
50                                 status_update="false" 
51                                 offline="false" 
52                                 timeout="600" 
53                                 retries="3"/>
54         
55                         <!-- implementation specific config options go here -->
56                         <implementation_config>
57                                 <bootstrap>SYSCONFDIR/opensrf_core.xml</bootstrap>
58                                 <currency>USD</currency>
59
60                                 <!-- The default encoding defined in the SIP specification is -->
61                                 <!-- ASCII, which isn't great for French, Spanish, Armenian. -->
62                                 <!-- You can specify a different encoding here, based on the -->
63                                 <!-- encodings supported by your SIP client and your Encode -->
64                                 <!-- module; run the following command to get a list of supported -->
65                                 <!-- encodings: -->
66                                 <!--   perl -MEncode -le "print for Encode->encodings(':all')" -->
67
68                                 <!-- UTF-8 is the recommended encoding if your SIP client supports it -->
69                                 <encoding>ascii</encoding>
70
71                                 <!-- These defines what this SIP code has the ability to support -->
72                                 <supports>
73                                         <item name='magnetic media' value='true'/>
74                                         <item name='security inhibit' value='false'/>
75                                         <item name='offline operation' value='false'/>
76                                         <item name='patron status request' value='true'/>
77                                         <item name='checkout' value='true'/>
78                                         <item name='checkin' value='true'/>
79                                         <item name='block patron' value='true'/>
80                                         <item name='acs status' value='true'/>
81                                         <item name='login' value='true'/>
82                                         <item name='patron information' value='true'/>
83                                         <item name='end patron session' value='true'/>
84                                         <item name='fee paid' value='true'/>
85                                         <item name='item information' value='true'/>
86                                         <item name='item status update' value='false'/>
87                                         <item name='patron enable' value='false'/>
88                                         <item name='hold' value='false'/>
89                                         <item name='renew' value='true'/>
90                                         <item name='renew all' value='true'/>
91                                 </supports>
92                                 <options>
93                                         <!-- msg64, the patron information request can be
94                                           made to return item barcodes by setting
95                                           the option 'msg64_summary_datatype' to 'barcode'
96                                           as below. Any other value, or no value at all
97                                           will cause OpenILS::SIP to return the title
98                                           in response to a message 64 request, which was the
99                                           default behaviour in previous versions of Evergreen.
100                                         -->
101                                         <option name='msg64_summary_datatype' value='barcode' />
102
103
104                     <!--
105                         When set, holds will be returned to the SIP client as copy
106                         barcodes instead of title strings.  This is useful, in 
107                         particular, for making subsequent calls for hold cancellation.  
108                     -->
109                     <!--
110                     <option name='msg64_hold_datatype' value='barcode' />
111                     -->
112
113                                         <!--
114                                                 If enabled, the PC field in patron-info requests will return the non-translated profile name
115                                         <option name='patron_type_uses_code' value='true' />
116                                         -->
117
118                     <!--
119                         By default, most dates use the SIP date format.  Some,
120                         like circulation due dates, use the ISO8601 date format 
121                         instead.  If this setting is set to true, all dates will
122                         use the SIP date format.
123                     <option name='use_sip_date_format' value='true' />
124                     -->
125
126                                         <!--
127                                                 If enabled, return the calculated value for the recall
128                                                 flag instead of always returning not-OK
129                                         <option name='patron_calculate_recal_ok' value='true' />
130                                         -->
131
132                                 </options>
133
134                 <checkin_override>
135                     <event>COPY_ALERT_MESSAGE</event>
136                     <event>COPY_BAD_STATUS</event>
137                     <event>COPY_STATUS_MISSING</event>
138                     <!--
139                     <event>COPY_STATUS_LOST</event>
140                     -->
141                 </checkin_override>
142
143                 <checkout_override>
144                     <event>COPY_ALERT_MESSAGE</event>
145                 </checkout_override>
146
147                 <!-- If uncommented, SIP2 checkins will capture local holds as transits, instead of marking as ready for pickup. -->
148                 <!--
149                 <checkin_hold_as_transit>1</checkin_hold_as_transit>
150                 -->
151
152                 <!-- If uncommented, overrides the legacy_script_support value in opensrf.xml for SIP. -->
153                 <!--
154                 <legacy_script_support>false</legacy_script_support>
155                 -->
156
157                                 <scripts>
158                     <!-- 
159                         When legacy script support is disabled, the <script> configuration
160                         is ignored.  The SIP server pulls item configuration information
161                         from the database instead (config.circ_modifier).
162                     -->
163                                         <path>LOCALSTATEDIR/</path>
164                     <path>LOCALSTATEDIR/catalog/</path>
165                     <path>LIBDIR/javascript/</path>
166                                         <item_config>circ/circ_item_config.js</item_config>
167                                 </scripts>
168
169                         </implementation_config>
170         
171                 </institution>
172         
173         </institutions>
174 </acsconfig>
175
176 <!--
177     vim:noet:ts=4:sw=4:
178 -->