Show TOC Start of Content Area

Background documentation J2EE Engine Specific Environment Parameters  Locate the document in its SAP Library structure

com.sap.engine.services.jndi.InitialContextFactoryImpl

This is the standard InitialContextFactory, which provides you with access to the naming system. The following specific environment parameter can be passed as argument when getting new InitialContext:

...

·        "force_remote" = “true”– this property is set from a client that is running on this server process (service, application), but which wants to use the JNDI Registry Service from another cluster. The Context that the client will get, will grant it access to the root Context of the naming system. Clients that are not running on the server, do not have to use it.

This property is linked to the Context.PROVIDER_URL property specifying the URL of the dispatcher running on the cluster, from which the client wants to use the JNDI Registry Service. If the “force_remote” property is set but no URL is provided, the factory will return InitialContext from the same server process.

End of Content Area