<!ELEMENT extension (connector+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ATTLIST connector
hostname CDATA #IMPLIED
port CDATA #IMPLIED
keepAlive CDATA #IMPLIED
discovery (true | false) >
A connector defines the port and other information for an ECF generic server to receive connection requests from clients.
<!ELEMENT group EMPTY>
<!ATTLIST group
name CDATA #REQUIRED>
A specific named group for the parent connector. e.g. 'server' in ecftcp://localhost:3282/server
<extension point="org.eclipse.ecf.server.generic.configuration"> <connector hostname="localhost" keepAlive="30000" port="3282"> <group name="server"> </group> </connector> </extension>Produces a server with groupID: ecftcp://localhost:3333/groupName
Copyright (c) 2004 Composent, Inc. and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0