in src/main/csharp/ConnectionFactory.cs [47:61]
public ConnectionFactory()
{
try
{
this.tibcoConnectionFactory = new TIBCO.EMS.ConnectionFactory();
ConfigureConnectionFactory();
}
catch(Exception ex)
{
Apache.NMS.Tracer.DebugFormat("Exception instantiating TIBCO.EMS.ConnectionFactory: {0}", ex.Message);
ExceptionUtil.WrapAndThrowNMSException(ex);
}
VerifyConnectionFactory();
}