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;
}