Installation of xmlBlaster

Requirements server side

Quick installation in a few seconds

This is for distributions only, if you have checked out from subversion (version control) with svn read the above INSTALL file.

Start the server without special environment settings and no special CLASSPATH settings:

Change to the installed xmlBlaster directory and type (on Windows use a '\' instead of '/')

     java -jar lib/xmlBlaster.jar
   

Congratulations, now the server is running and ready!
Type a 'g' if you want the GUI to pop up.
Use -help if you want usage infos.

     java -jar lib/xmlBlaster.jar -help
   

Now start a client:
Change to the installed xmlBlaster directory and type (on Windows use a '\' instead of '/')

     java -classpath lib/xmlBlaster.jar HelloWorld4
   

You should see some output on your terminal telling that a message is published and subscribed.

Find out what command line options you have:

     java -classpath lib/xmlBlaster.jar HelloWorld4 -help
   

Study the following client codes in the given sequence

  1. xmlBlaster/demo/HelloWorld.java
  2. xmlBlaster/demo/HelloWorld2.java
  3. xmlBlaster/demo/HelloWorld3java
  4. xmlBlaster/demo/HelloWorld4java
  5. xmlBlaster/demo/HelloWorld5java
  6. xmlBlaster/demo/HelloWorld6java
  7. xmlBlaster/demo/HelloWorld7java
  8. xmlBlaster/demo/HelloWorld8java
  9. xmlBlaster/demo/HelloWorld9java

As a next demo, you could try our simple chat client. Please read the xmlBlaster/demo/javaclients/chat/README how to start it.

If you want to adjust some properties or develop with xmlBlaster, please read the above INSTALL file.

Requirements client side:


HOME