Howto start the xmlBlaster server:
==================================

1. Main.java and MainGUI.java is used to invoke the xmlBlaster server:

      java org.xmlBlaster.Main

   This example switches on some debugging on the console:

      java org.xmlBlaster.Main -trace true -dump true -calls true -time true

   Optionally you can also start the server with

      java org.xmlBlaster.MainGUI

   which pops up a control panel with query interface and
   performance/logging display

   Specify the IP address for the CORBA server (multi homed hosts):

     java org.xmlBlaster.Main -bootstrapHostname 196.197.24.11 -plugin/ior/hostname 196.197.24.11

     (the first option is used for our http-IOR server the second for JacORB CORBA)

   This example redirects the logging output to a file:

      java org.xmlBlaster.Main -logDevice file,console -logFile /tmp/xmlBlaster.log

   and finally, this example just displays the usage:

      java org.xmlBlaster.Main -?

   Note: If you have not compiled xmlBlaster yourself, try to use the jar file:

      java -jar $XMLBLASTER_HOME/lib/xmlBlaster.jar


2. xmlBlaster/demo/javaclients/ClientSub.java may be used as a first test client:

  Using CORBA:

     jaco javaclients.ClientSub -trace true

  Using RMI:

     java javaclients.ClientSub -dispatch/connection/protocol RMI

  Using XMLRPC:

     java javaclients.ClientSub -dispatch/connection/protocol XMLRPC

  Other options:

     java javaclients.ClientSub -help


CORBA ports:
============
 From: http://www.iana.org/assignments/port-numbers


corba-iiop      683/tcp    CORBA IIOP 
corba-iiop      683/udp    CORBA IIOP 
corba-iiop-ssl  684/tcp    CORBA IIOP SSL
corba-iiop-ssl  684/udp    CORBA IIOP SSL
#                          Henry Lowe <lowe@omg.org>

cma             1050/tcp   CORBA Management Agent
cma             1050/udp   CORBA Management Agent
#                          Ramy Zaarour <ramy@lumos.com>

corbaloc        2809/tcp   CORBA LOC
corbaloc        2809/udp   CORBA LOC
#                          Ted McFadden <mcfadden@dstc.edu.au>


