Lines 3-23
Link Here
|
3 |
<error-detect enabled="true" /> |
3 |
<error-detect enabled="true" /> |
4 |
|
4 |
|
5 |
<!-- |
5 |
<!-- |
6 |
Set Net::Server::PreFork runtime parameters |
6 |
Set Net::Server::PreFork runtime parameters |
7 |
syslog_ident will identify SIP2 Koha server entries in syslog |
7 |
syslog_ident will identify SIP2 Koha server entries in syslog |
8 |
For OpenSolaris, add: syslog_logsock=stream |
8 |
For OpenSolaris, add: syslog_logsock=stream |
9 |
--> |
9 |
--> |
10 |
<server-params |
10 |
<server-params |
11 |
min_servers='1' |
11 |
min_servers='1' |
12 |
min_spare_servers='0' |
12 |
min_spare_servers='0' |
13 |
log_file='Sys::Syslog' |
13 |
log_file='Sys::Syslog' |
14 |
syslog_ident='koha_sip' |
14 |
syslog_ident='koha_sip' |
15 |
syslog_facility='local6' |
15 |
syslog_facility='local6' |
16 |
/> |
16 |
/> |
17 |
|
17 |
|
18 |
<listeners> |
18 |
<listeners> |
19 |
<!-- vestigial HTTP, never implemented: just use the OPAC! |
19 |
<!-- vestigial HTTP, never implemented: just use the OPAC! |
20 |
<service |
20 |
<service |
21 |
port="0:8080/tcp" |
21 |
port="0:8080/tcp" |
22 |
transport="http" |
22 |
transport="http" |
23 |
protocol="NCIP/1.0" /> |
23 |
protocol="NCIP/1.0" /> |
Lines 30-36
Link Here
|
30 |
|
30 |
|
31 |
<service |
31 |
<service |
32 |
port="127.0.0.1:6001/tcp" |
32 |
port="127.0.0.1:6001/tcp" |
33 |
transport="RAW" |
33 |
transport="RAW" |
34 |
protocol="SIP/2.00" |
34 |
protocol="SIP/2.00" |
35 |
client_timeout="600" |
35 |
client_timeout="600" |
36 |
timeout="60" /> |
36 |
timeout="60" /> |
Lines 67-97
in our case "ILS".
Link Here
|
67 |
<institutions> |
67 |
<institutions> |
68 |
<institution id="MAIN" implementation="ILS" parms=""> |
68 |
<institution id="MAIN" implementation="ILS" parms=""> |
69 |
<policy checkin="true" renewal="true" checkout="true" |
69 |
<policy checkin="true" renewal="true" checkout="true" |
70 |
status_update="false" offline="false" |
70 |
status_update="false" offline="false" |
71 |
timeout="100" |
71 |
timeout="100" |
72 |
retries="5" /> |
72 |
retries="5" /> |
73 |
</institution> |
73 |
</institution> |
74 |
<institution id="CPL" implementation="ILS" parms=""> |
74 |
<institution id="CPL" implementation="ILS" parms=""> |
75 |
<policy checkin="true" renewal="true" checkout="true" |
75 |
<policy checkin="true" renewal="true" checkout="true" |
76 |
status_update="false" offline="false" |
76 |
status_update="false" offline="false" |
77 |
timeout="25" |
77 |
timeout="25" |
78 |
retries="5" /> |
78 |
retries="5" /> |
79 |
</institution> |
79 |
</institution> |
80 |
<institution id="kohalibrary" implementation="ILS" parms=""> |
80 |
<institution id="kohalibrary" implementation="ILS" parms=""> |
81 |
<policy checkin="true" renewal="false" checkout="true" |
81 |
<policy checkin="true" renewal="false" checkout="true" |
82 |
status_update="false" offline="false" |
82 |
status_update="false" offline="false" |
83 |
timeout="100" |
83 |
timeout="100" |
84 |
retries="5" /> |
84 |
retries="5" /> |
85 |
</institution> |
85 |
</institution> |
86 |
<institution id="kohalibrary2" implementation="ILS" parms=""> |
86 |
<institution id="kohalibrary2" implementation="ILS" parms=""> |
87 |
<policy checkin="true" renewal="false" checkout="true" |
87 |
<policy checkin="true" renewal="false" checkout="true" |
88 |
timeout="100" |
88 |
timeout="100" |
89 |
retries="3" /> |
89 |
retries="3" /> |
90 |
</institution> |
90 |
</institution> |
91 |
<institution id="LPL" implementation="ILS"> |
91 |
<institution id="LPL" implementation="ILS"> |
92 |
<policy checkin="true" renewal="false" checkout="true" |
92 |
<policy checkin="true" renewal="false" checkout="true" |
93 |
timeout="100" |
93 |
timeout="100" |
94 |
retries="5" /> |
94 |
retries="5" /> |
95 |
</institution> |
95 |
</institution> |
96 |
</institutions> |
96 |
</institutions> |
97 |
</acsconfig> |
97 |
</acsconfig> |
98 |
- |
|
|