interface XConnectCallback in module com::sun::star::bridge::

(Global Index)

Syntax

interface XConnectCallback : com::sun::star::uno::XInterface ;

Description

is used to call the remote server when a client wants to establish a connection.

The server has to return the remote object that it would provide to the specified client.

See also

XConnectionBroker.

See also

XConnectionServerSide.

Method Summary

attemptConnect is called if a client tries to connect to a remote server.

Method Details



attemptConnect

Syntax

void attemptConnect (
com::sun::star::bridge::XConnectionServerSide connection )
raises ( com::sun::star::lang::SecurityException );

Description

is called if a client tries to connect to a remote server.

The called object has to check security and set the provided object. If it returns, the connection will be accepted. If it throws a SecurityException, the connection will be refused.

Top of Page