Author: tabish
Date: Tue Feb 9 14:20:34 2010
New Revision: 908045
URL: http://svn.apache.org/viewvc?rev=908045&view=rev
Log:
fix for: https://issues.apache.org/activemq/browse/AMQNET-231
Modified:
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs
Modified:
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs?rev=908045&r1=908044&r2=908045&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs
Tue Feb 9 14:20:34 2010
@@ -111,10 +111,10 @@
connection = new Connection(uri, transport,
this.ClientIdGenerator);
- ConfigureConnection(connection);
+ connection.UserName = userName;
+ connection.Password = password;
- connection.UserName = this.connectionUserName;
- connection.Password = this.connectionPassword;
+ ConfigureConnection(connection);
if(this.clientId != null)
{