You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2014/01/30 15:45:54 UTC

svn commit: r1562844 - in /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp: TransactionContext.cs Transport/Tcp/SslTransport.cs

Author: tabish
Date: Thu Jan 30 14:45:54 2014
New Revision: 1562844

URL: http://svn.apache.org/r1562844
Log:
https://issues.apache.org/jira/browse/AMQNET-468

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/TransactionContext.cs
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Tcp/SslTransport.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/TransactionContext.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/TransactionContext.cs?rev=1562844&r1=1562843&r2=1562844&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/TransactionContext.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/TransactionContext.cs Thu Jan 30 14:45:54 2014
@@ -103,7 +103,7 @@ namespace Apache.NMS.Stomp
         {
             if(!InTransaction)
             {
-                throw new NMSException("Invliad State: Not Currently in a Transaction");
+                throw new NMSException("Invalid State: Not Currently in a Transaction");
             }
 
             this.BeforeEnd();
@@ -124,7 +124,7 @@ namespace Apache.NMS.Stomp
         {
             if(!InTransaction)
             {
-                throw new NMSException("Invliad State: Not Currently in a Transaction");
+                throw new NMSException("Invalid State: Not Currently in a Transaction");
             }
 
             this.BeforeEnd();

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Tcp/SslTransport.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Tcp/SslTransport.cs?rev=1562844&r1=1562843&r2=1562844&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Tcp/SslTransport.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Tcp/SslTransport.cs Thu Jan 30 14:45:54 2014
@@ -175,7 +175,7 @@ namespace Apache.NMS.Stomp.Transport.Tcp
                 Tracer.Error("The Remote Certificate was not Available.");
             }
 
-            // Configuration may or may not allow us to connect with an invliad broker cert.
+            // Configuration may or may not allow us to connect with an invalid broker cert.
             return AcceptInvalidBrokerCert;
         }
 
@@ -239,7 +239,7 @@ namespace Apache.NMS.Stomp.Transport.Tcp
                     }
                     else
                     {
-                        throw new NMSException("Invlalid StoreLocation given on URI");
+                        throw new NMSException("Invalid StoreLocation given on URI");
                     }
                 }