Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 2 (11.1.2.0.0)

E17483-01

oracle.jbo
Interface ConnectionModeConstants


public interface ConnectionModeConstants

Defines connection modes.

Various connection modes can be used by clients to find the root Application Module deployed using the Visigenic ORB. The modes that can be used are:

This class and its modes are typically used to set the environment for loading an Application Module on the Visibroker platform. See the following examples.

Setting the Environment for the Remote (Naming Service) Mode

 // Component deployed to Visibroker connecting in Naming Service mode
    public static void setRemoteVbEnv()  {
       env.put(JboContext.INITIAL_CONTEXT_FACTORY,
                            JboContext.JBO_CONTEXT_FACTORY);
       env.put(JboContext.DEPLOY_PLATFORM, JboContext.PLATFORM_VB);
       env.put(JboContext.CONNECTION_MODE,
                            new Integer(ConnectionModeConstants.REMOTE));
       env.put(JboContext.APPLICATION_PATH, "RemoteAlias");
    }
 

where the RemoteAlias is the named service which is aliased by using the startNamingService.bat file.

Setting the Environment for the Use Binding Mode

 // Component deployed to Visibroker connecting in Use Binding mode
    public static void setBindVbEnv()  {
       env.put(JboContext.INITIAL_CONTEXT_FACTORY,
                            JboContext.JBO_CONTEXT_FACTORY);
       env.put(JboContext.DEPLOY_PLATFORM, JboContext.PLATFORM_VB);
       env.put(JboContext.CONNECTION_MODE,
                            new Integer(ConnectionModeConstants.USE_BIND));
       env.put(JboContext.HOST_NAME, hostName);
     }
 

Setting the Environment for the Colocate Mode

 // Component deployed to Visibroker connecting in Colocate mode
    public static void setColocatedVbEnv()  {
       env.put(JboContext.INITIAL_CONTEXT_FACTORY,
                              JboContext.JBO_CONTEXT_FACTORY);
       env.put(JboContext.DEPLOY_PLATFORM, JboContext.PLATFORM_VB);
       env.put(JboContext.CONNECTION_MODE,
                              new Integer(ConnectionModeConstants.COLOCATE));
 

Since:
JDeveloper 3.0
See Also:
JboContext

Field Summary
static int COLOCATE
          Indicates that client and server are executing in the same JVM.
static int LOCAL
          Deprecated. Use JboContext instead.
static int REMOTE
          Indicates that a naming service is to be used.
static int USE_BIND
          Indicates that remote applets are to use BIND.
static int USE_IOR
          Indicates that IOR is to be used.
 

Field Detail

LOCAL

static final int LOCAL
Deprecated. Use JboContext instead.
See Also:
Constant Field Values

COLOCATE

static final int COLOCATE
Indicates that client and server are executing in the same JVM.

See Also:
Constant Field Values

REMOTE

static final int REMOTE
Indicates that a naming service is to be used.

See Also:
Constant Field Values

USE_IOR

static final int USE_IOR
Indicates that IOR is to be used.

See Also:
Constant Field Values

USE_BIND

static final int USE_BIND
Indicates that remote applets are to use BIND.

See Also:
Constant Field Values

Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 2 (11.1.2.0.0)

E17483-01

Copyright © 1997, 2011, Oracle. All rights reserved.