-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathREADME.txt
31 lines (24 loc) · 1.07 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
### pm_websphere_mq
pm_websphere_mq is a simple Erlang Websphere MQ client application
written by Power Media S.A (http://www.power.com.pl)
### Installation and usage
Edit priv/eai_clients/Makefile with correct paths to wmq library and
header files. To compile run make in priv/.
Application configuration example:
{pm_websphere_mq, [
%% *binaries' and *configs' paths are relative to app's priv/ directory
{spawner_binary, "bin/spawner"},
{sender_binary, "bin/sender"},
{receiver_binary, "bin/receiver"},
{sender_config, "sender_prod.ini"},
{error_sender_config, "error_sender_prod.ini"},
{receiver_config, "receiver_prod.ini"},
%% *logs' paths are relative to app's main directory;
%% these files are for redirected stdout (debug messages)
{sender_log, "../../log/sender_debug.txt"},
{error_sender_log, "../../log/error_debug.txt"},
{receiver_log, "../../log/receiver_debug.txt"}
]}
### Third party code
Includes source code from:
inih: https://code.google.com/p/inih/ (BSD-2)