[TIBCO.EMS .NET Admin client library 6.3 documentation]

Creates ConnectionFactoryInfo.

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public ConnectionFactoryInfo(
	string url,
	string clientID,
	DestinationType type,
	bool xa,
	Hashtable sslParams
)
Public Sub New ( _
	url As String, _
	clientID As String, _
	type As DestinationType, _
	xa As Boolean, _
	sslParams As Hashtable _
)
public:
ConnectionFactoryInfo(
	String^ url, 
	String^ clientID, 
	DestinationType type, 
	bool xa, 
	Hashtable^ sslParams
)

Parameters

url
Type: System..::.String
The server URL for the factory.
clientID
Type: System..::.String
The clientID for the connection created by this factory.
type
Type: TIBCO.EMS.ADMIN..::.DestinationType
Factory type. Can be DestinationType.Queue, DestinationType.Topic or DestinationType.All where latter creates a generic connection factory.
xa
Type: System..::.Boolean
XA type. Set to true if this is an XA connection factory.
sslParams
Type: System.Collections..::.Hashtable
The SSL parameters for the connections created with this factory (can be null).

Remarks

The ConnectionFactory is not created on the server until Admin.createConnectionFactory() is called.

See Also