You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jg...@apache.org on 2008/10/29 01:10:34 UTC

svn commit: r708739 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/ConnectionFactory.cs

Author: jgomes
Date: Tue Oct 28 17:10:33 2008
New Revision: 708739

URL: http://svn.apache.org/viewvc?rev=708739&view=rev
Log:
Delay starting the transport layer until after processing URI parameters.

Modified:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/ConnectionFactory.cs

Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/ConnectionFactory.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/ConnectionFactory.cs?rev=708739&r1=708738&r2=708739&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/ConnectionFactory.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/ConnectionFactory.cs Tue Oct 28 17:10:33 2008
@@ -107,6 +107,7 @@
 			URISupport.CompositeData c = URISupport.parseComposite(brokerUri);
 			URISupport.SetProperties(connection, c.Parameters, "connection.");
 
+			connection.ITransport.Start();
 			return connection;
 		}