You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2007/10/29 15:00:16 UTC

svn commit: r589632 - /activemq/activemq-dotnet/trunk/src/main/csharp/NMS/NMSFactory.cs

Author: chirino
Date: Mon Oct 29 07:00:11 2007
New Revision: 589632

URL: http://svn.apache.org/viewvc?rev=589632&view=rev
Log:
Applying patch attached to https://issues.apache.org/activemq/browse/AMQNET-68 on 24/Oct/07

Modified:
    activemq/activemq-dotnet/trunk/src/main/csharp/NMS/NMSFactory.cs

Modified: activemq/activemq-dotnet/trunk/src/main/csharp/NMS/NMSFactory.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/trunk/src/main/csharp/NMS/NMSFactory.cs?rev=589632&r1=589631&r2=589632&view=diff
==============================================================================
--- activemq/activemq-dotnet/trunk/src/main/csharp/NMS/NMSFactory.cs (original)
+++ activemq/activemq-dotnet/trunk/src/main/csharp/NMS/NMSFactory.cs Mon Oct 29 07:00:11 2007
@@ -91,17 +91,17 @@
 			// TODO: Read an external configuration file that maps scheme to provider implementation.
 			if(String.Compare(scheme, "tibco", true) == 0)
 			{
-				cfi.assemblyFileName = "Apache.NMS.TIBCO.dll";
+				cfi.assemblyFileName = "NMS.TIBCO.dll";
 				cfi.factoryClassName = "Apache.TibcoEMS.ConnectionFactory";
 			}
 			else if(String.Compare(scheme, "msmq", true) == 0)
 			{
-				cfi.assemblyFileName = "Apache.NMS.MSMQ.dll";
+				cfi.assemblyFileName = "NMS.MSMQ.dll";
 				cfi.factoryClassName = "Apache.MSMQ.ConnectionFactory";
 			}
 			else
 			{
-				cfi.assemblyFileName = "Apache.NMS.ActiveMQ.dll";
+				cfi.assemblyFileName = "NMS.ActiveMQ.dll";
 				cfi.factoryClassName = "Apache.ActiveMQ.ConnectionFactory";
 			}