]> git.evergreen-ils.org Git - OpenSRF.git/blob - examples/math_xul_client/math/content/conf/client_config.xml
LP1940146: Update documentation
[OpenSRF.git] / examples / math_xul_client / math / content / conf / client_config.xml
1 <?xml version="1.0" ?>
2
3 <oils_config>
4
5         <!-- General system settings -->
6
7         <system>
8                 <hostname>myhostname</hostname>
9
10                 <!-- log_level
11                         Levels run between 0 and 3.  O is no logging.  3 is full debug output -->
12                 <log_level>0</log_level>
13
14                 <!--  stdout_log
15                         When set to 0, no stdout logging is done, when set to 1, all logging
16                         goes to both stdout as well as their destined log file, if set to
17                         2, the messages only go to stdout.  -->
18                 <stdout_log>0</stdout_log>
19         </system>
20
21
22         <!-- Log files -->
23
24         <logs>
25                 <debug>debug.log</debug>
26                 <transport>transport.log</transport>
27                 <error>error.log</error>
28         </logs>
29
30         <!-- Remote services -->
31
32         <remote_service>
33                 <math>router@localhost/math</math>
34                 <mathdb>router@localhost/mathdb</mathdb>
35                 <storage>router@localhost/storage</storage>
36         </remote_service>
37         
38         <!-- Transport -->
39
40         <transport>
41                 <transport_impl>jabber_connection</transport_impl>
42
43                 <!-- connect_timeout doubles as both the low level transport timeout
44                         as well as the app connection timeout -->
45                 <connect_timeout>15</connect_timeout>
46                 <username>math_user</username>
47                 <password>math_user_password</password>
48                 <primary>localhost</primary>
49                 <port>5222</port>
50                 <ssl>0</ssl>
51         </transport>
52
53 </oils_config>