service NamingService in module com::sun::star::uno::

(Global Index)

Syntax

service NamingService;

Description

provides a collection of global reachable objects.

Normally an uno application exposes its external reachable objects through this service. It is up to the implementation, how the registered objects are exposed to the rest of the world. Which objects are reachable from the outside are implementation specific.

To extend the reachability change the naming service. To access the process local naming service normally use your ServiceManager. If you are outside of UNO you can access the shared library "unonamingservice". This library exports a c-style function "createComponentFactory". All parameters can be set to null. Look at the service specification of the shared library loader.
In Java the class name of the naming component is "com.sun.star.comp.nameservice.NameService". If Java is embedded in a native system this component should connect to the native library.

Exported Interfaces


com::sun::star::uno::XNamingService

Description

through this interface the objects are registered and accessed.

Top of Page