blob: e21616f9eef8dc2ddbbc0429b066b9f7844bed18 [file] [log] [blame]
To get started with the example you will need jdk 1.5.0_x,
where x is pretty recent (>= 15), or any release of jdk 1.6.
You will also need ant 1.8.2.
For building the csharp examples you need the Microsoft .NET Framework v4.0 or higher.
Furthermore you need to add the .NET Framework path to your PATH environment variable:
set PATH=C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319;%PATH%
Call
> ant
to generate sources, build and run tests.
This will run the default target which will build both java
and csharp programs. You can also use build-java or build-csharp
targets to build only java or only csharp.
JAVA INSTRUCTIONS:
******************
To run java chat example for java, run these commands:
> cd target\bin
> start java -cp chat.jar org.apache.etch.examples.chat.MainChatListener
> start java -cp chat.jar org.apache.etch.examples.chat.MainChatClient
> start java -cp chat.jar org.apache.etch.examples.chat.MainChatClient
Two chat clients will be started; there is a help command;
login as a different user in each with any password; they
can chat with each other!
CSHARP INSTRUCTIONS:
********************
To run csharp example:
> cd target\bin
> start ChatListener.exe
> start ChatClient.exe
> start ChatClient.exe
You can mix and match the various clients and listeners.