Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The configuration has been read, we now have to instanciate the server. This is done throw a JNDI invocation of the InitialDirContext() method :

Code Block

new InitialDirContext( env );

where env is the environment we have set in the previous steps. This method calls the getInitialContext() from the ServerContextFactory class which has been associated with the java.naming.factory.initial property.

...