|
Oracle ADF Model and Business Components API Reference 10.1.2 B14022-01 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
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:
JboContext
instead.
// 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.
// 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); }
// 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));
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 |
public static final int LOCAL
JboContext
instead.
public static final int COLOCATE
public static final int REMOTE
public static final int USE_IOR
public static final int USE_BIND
|
Oracle ADF Model and Business Components API Reference 10.1.2 B14022-01 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1997, 2004, Oracle. All rights reserved.