@@ -12,22 +12,42 @@ Files
1212SendSOAPMsg.cs Source file for C# application that sends text
1313 or binary message as XML/SOAP message to a UMS server.
1414ReceiveSOAPMsg.cs Source file for C# application that receives text
15- or binary message as XML/SOAP message from a UMS server.
16- SendSOAPMsg.exe Prebuilt executable for .NET 2.0.
17- ReceiveSOAPMsg.exe Prebuilt executable for .NET 2.0.
15+ or binary message as XML/SOAP message from a UMS server.
1816
1917README This file.
2018
2119Configuring the environment
2220---------------------------
23- These examples require .NET Framework 2.0 or later version.
21+
2422
2523The examples above assume that the Context Root for the UMS web module
2624is '/ums'. If this is not the case, please modify the DEFAULT_CONTEXT_ROOT
2725variable in the application accordingly.
2826
2927Running the example
3028-------------------
31- Example usage:
3229
33- SendSOAPMsg.exe -h
30+ Build the examples to create executables `SendSOAPMsg.exe` and `ReceiveSOAPMsg.exe`, using .NET Framework 2.0 or later.
31+
32+ SendSOAPMsg.exe command line parameters:
33+
34+ -h Usage
35+ -s <host:port> Specify the server host and port.
36+ -d <name> Specify the destination name. Default is simpleSoapQ.
37+ [-m "<message>" | -f <file>] Specify a text message or a file to sent.
38+ -n <count> Specify number of message to send.
39+ -q Specify domain is a queue. Default is queue.
40+ -t Specify domain is a topic.
41+ -u <user> Specify the user name. Default is guest.
42+ -p <password> Specify the password. Default is guest.
43+
44+
45+ ReceiveSOAPMsg.exe command line parameters:
46+
47+ -h Usage
48+ -s <host:port> Specify the server host and port.
49+ -d <name> Specify the destination name. Default is simpleSoapQ.
50+ -q Specify domain is a queue. Default is queue.
51+ -t Specify domain is a topic.
52+ -u <user> Specify the user name. Default is guest.
53+ -p <password> Specify the password. Default is guest.
0 commit comments