summaryrefslogtreecommitdiff
path: root/java/management/tools/qpid-cli/README.txt
blob: 6db439aad01c89b138a20b311c906101f3661761 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
README
n======

INSTALL
=======
        source
        ======  
        1.Set the environment variable QPID_HOME to the root directory of the repository or the release.
      
        2.Run these command to build the source

        ant compile OR run the ant build in the parent directory(main ant script)

        3.To launch the CLI run the script in bin folder with appropriate parameters.

        ex:

        Linux   $QPID_HOME/bin/qpid-cli  -h 10.8.100.122 -p 8334
        Windows %QPID_HOME%/bin/qpid-cli.bat -h 10.8.100.122 -p 8334

        -h hostname (default localhost)
        -p broker port (default 8999)

        binary
        ======
        1.Set the environment variable QPID_HOME to the root directory of the repository or the release.

        2.To launch the CLI run the script in bin folder with appropriate parameters.

        ex:

        Linux   $QPID_HOME/bin/qpid-cli  -h 10.8.100.122 -p 8334
        Windows %QPID_HOME%/bin/qpid-cli.bat -h 10.8.100.122 -p 8334

        -h hostname (default localhost)
        -p broker port (default 8999)

        3. No test cases are included in the binary version.

TESTING
=======

1.Test source is located in the test directory.If you want to run the tests please start the
Qpid java broker and run following ant targets.
        
        ant compile-tests       This compile all the test sources
        ant test                This runs all the test cases
2.If you want to test with a remote broker please use the source release and change the constants in ConnectionConstants.java
class.(Default values are BROKER_HOSTNAME="localhost" BROKER_PORT="8999")

For more informations please visit the project home page.