diff --git a/Spring.build b/Spring.build index b918fda6..62c98d9a 100644 --- a/Spring.build +++ b/Spring.build @@ -20,8 +20,10 @@ Build properties that may be set: ================================= "project.build.sign": signs all assemblies. Requires the key file $/Spring.Net.snk to be in place -"package.version:": +"package.version": set the package version +"build-testing-mstest": + set to true if local machine has VS.NET 2008 MSTest installed --> @@ -378,6 +380,7 @@ Build properties that may be set: + @@ -406,6 +409,9 @@ Build properties that may be set: + @@ -681,6 +687,8 @@ Build properties that may be set: + + @@ -689,6 +697,8 @@ Build properties that may be set: + + @@ -722,6 +732,8 @@ Build properties that may be set: + + @@ -730,6 +742,8 @@ Build properties that may be set: + + @@ -764,21 +778,21 @@ Build properties that may be set: - + - + + @@ -861,7 +875,9 @@ Build properties that may be set: + @@ -1011,7 +1027,6 @@ Build properties that may be set: - @@ -1020,7 +1035,8 @@ Build properties that may be set: - + + @@ -1050,10 +1066,6 @@ Build properties that may be set: - - - - @@ -1082,6 +1094,14 @@ Build properties that may be set: + + + + + + + + @@ -1098,7 +1118,6 @@ Build properties that may be set: - @@ -1107,6 +1126,7 @@ Build properties that may be set: + @@ -1127,7 +1147,6 @@ Build properties that may be set: - @@ -1151,9 +1170,11 @@ Build properties that may be set: + + @@ -1176,12 +1197,12 @@ Build properties that may be set: - + @@ -1190,16 +1211,8 @@ Build properties that may be set: - - - - - - - - - - + + @@ -1266,13 +1279,13 @@ Build properties that may be set: + file="src/Spring/Spring.Core/Objects/Factory/Xml/spring-objects-1.3.xsd"/> + file="src/Spring/Spring.Core/Validation/Config/spring-validation-1.3.xsd"/> - + @@ -1446,11 +1459,10 @@ Build properties that may be set: - + - @@ -1461,15 +1473,16 @@ Build properties that may be set: - + + @@ -1478,7 +1491,6 @@ Build properties that may be set: - @@ -1486,9 +1498,11 @@ Build properties that may be set: + + @@ -1509,6 +1523,7 @@ Build properties that may be set: + diff --git a/doc/reference/src/index.xml b/doc/reference/src/index.xml index 5610d79d..8c39d20b 100644 --- a/doc/reference/src/index.xml +++ b/doc/reference/src/index.xml @@ -62,8 +62,8 @@ The Spring.NET Framework Reference Documentation - Version 1.2.1 - Last Updated July xx, 2009 (Latest documentation) + Version 1.3.0 RC1 + Last Updated July 30, 2009 (Latest documentation) Mark diff --git a/doc/sdk/Spring.NET-net-2.0.ndoc b/doc/sdk/Spring.NET-net-2.0.ndoc index 0522584f..3299de93 100644 --- a/doc/sdk/Spring.NET-net-2.0.ndoc +++ b/doc/sdk/Spring.NET-net-2.0.ndoc @@ -1,18 +1,20 @@  + - + + @@ -22,8 +24,8 @@ - - + + diff --git a/doc/sdk/default.html b/doc/sdk/default.html index 785eb04a..6aea225e 100644 --- a/doc/sdk/default.html +++ b/doc/sdk/default.html @@ -2,7 +2,7 @@ - Spring.NET 1.2.1 SDK Reference Documentation + Spring.NET 1.3.0 RC1 SDK Reference Documentation @@ -12,7 +12,7 @@
- + @@ -262,4 +262,4 @@ While dependecy injection generally leads to classes that are easier to unit tes - \ No newline at end of file + diff --git a/src/Spring/CommonAssemblyInfo.cs b/src/Spring/CommonAssemblyInfo.cs index b386d887..9c909796 100644 --- a/src/Spring/CommonAssemblyInfo.cs +++ b/src/Spring/CommonAssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: AssemblyConfiguration("net-2.0.win32; Release")] #endif [assembly: AssemblyCompany("http://www.springframework.net")] -[assembly: AssemblyProduct("Spring.NET Framework 1.2.1")] +[assembly: AssemblyProduct("Spring.NET Framework 1.3.0")] [assembly: AssemblyCopyright("Copyright 2002-2009 Spring.NET Framework Team.")] [assembly: AssemblyTrademark("Apache License, Version 2.0")] [assembly: AssemblyCulture("")] @@ -31,9 +31,9 @@ using System.Reflection; // // This is to support side-by-side deployment of .NET 1.1 and .NET 2.0 versions of the assembly. #if !NET_2_0 -[assembly: AssemblyVersion("1.2.1.11001")] +[assembly: AssemblyVersion("1.3.0.11001")] #else -[assembly: AssemblyVersion("1.2.1.20001")] +[assembly: AssemblyVersion("1.3.0.20001")] #endif // diff --git a/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Common/EmsConnectionFactory.cs b/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Common/EmsConnectionFactory.cs index e2b0af7e..64f15131 100644 --- a/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Common/EmsConnectionFactory.cs +++ b/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Common/EmsConnectionFactory.cs @@ -266,7 +266,7 @@ namespace Spring.Messaging.Ems.Common { nativeConnectionFactory.SetSSLProxyAuth(this.sslProxyAuthUsername, this.sslProxyAuthPassword); } - if (sslProxyHost != null && sslProxyPort != null) + if (sslProxyHost != null && sslProxyPort != 0) { nativeConnectionFactory.SetSSLProxy(this.sslProxyHost, this.sslProxyPort); } diff --git a/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Connections/CachedSession.cs b/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Connections/CachedSession.cs index 5e8a0f66..0d05a6ad 100644 --- a/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Connections/CachedSession.cs +++ b/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Connections/CachedSession.cs @@ -50,7 +50,6 @@ namespace Spring.Messaging.Ems.Connections private int sessionCacheSize; private IDictionary cachedProducers = new Hashtable(); private IDictionary cachedConsumers = new Hashtable(); - private IMessageProducer cachedUnspecifiedDestinationMessageProducer; private bool shouldCacheProducers; private bool shouldCacheConsumers; private bool transactionOpen = false; diff --git a/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Core/EmsTemplate.cs b/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Core/EmsTemplate.cs index 6c813607..597b3343 100644 --- a/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Core/EmsTemplate.cs +++ b/src/Spring/Spring.Messaging.Ems/Messaging/Ems/Core/EmsTemplate.cs @@ -394,7 +394,7 @@ namespace Spring.Messaging.Ems.Core set { timeToLive = value; } } - + /* /// /// Gets or sets a value indicating whether the EmsTemplate should itself /// be responsible for caching EMS Connection/Session/MessageProducer as compared to @@ -404,7 +404,7 @@ namespace Spring.Messaging.Ems.Core /// /// Connection/Session/MessageProducer are thread-safe classes in TIBCO EMS. /// true to locally cache ems resources; otherwise, false. -/* virtual public bool CacheEmsResources + virtual public bool CacheEmsResources { get { return cacheEmsResources; } set { cacheEmsResources = value; } @@ -592,7 +592,7 @@ namespace Spring.Messaging.Ems.Core return session.CreateConsumer(destination, messageSelector); } } - + /* /// Create a EMS Connection via this template's ConnectionFactory. /// /// If CacheJmsResource is true, then the connection @@ -602,7 +602,7 @@ namespace Spring.Messaging.Ems.Core /// A EMS Connection /// /// If there is any problem accessing the EMS API -/* protected override IConnection CreateConnection() + protected override IConnection CreateConnection() { if (CacheEmsResources) { @@ -618,7 +618,7 @@ namespace Spring.Messaging.Ems.Core return ConnectionFactory.CreateConnection(); } }*/ - + /* /// Create a EMS Session for the given Connection. /// /// If CacheJmsResource is true, then the session @@ -630,7 +630,7 @@ namespace Spring.Messaging.Ems.Core /// the new EMS Session /// /// If there is any problem accessing the EMS API -/* protected override ISession CreateSession(IConnection con) + protected override ISession CreateSession(IConnection con) { if (CacheEmsResources) { diff --git a/src/Spring/Spring.Messaging.Ems/Spring.Messaging.Ems.2008.csproj b/src/Spring/Spring.Messaging.Ems/Spring.Messaging.Ems.2008.csproj index 91463f2b..61a0f349 100644 --- a/src/Spring/Spring.Messaging.Ems/Spring.Messaging.Ems.2008.csproj +++ b/src/Spring/Spring.Messaging.Ems/Spring.Messaging.Ems.2008.csproj @@ -2,7 +2,7 @@ Debug AnyCPU - 9.0.30729 + 9.0.21022 2.0 {900E3839-301E-48B1-BAEB-B6645620ACFF} Library @@ -39,6 +39,8 @@ prompt 4 ..\..\..\build\VS.NET.2005\Spring.Messaging.Ems\Debug\Spring.Messaging.Ems.xml + true + 1591,0618 pdbonly @@ -135,7 +137,8 @@ - Designer + + diff --git a/test/Spring/CommonAssemblyInfo.cs b/test/Spring/CommonAssemblyInfo.cs index 98fc164a..edeb7b1f 100644 --- a/test/Spring/CommonAssemblyInfo.cs +++ b/test/Spring/CommonAssemblyInfo.cs @@ -24,7 +24,7 @@ using System.Runtime.CompilerServices; // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.2.1.0")] +[assembly: AssemblyVersion("1.3.0.0")] // // In order to sign your assembly you must specify a key to use. Refer to the diff --git a/test/Spring/Spring.Messaging.Ems.Tests/Messaging/Ems/Config/EmsNamespaceHandlerTests.cs b/test/Spring/Spring.Messaging.Ems.Tests/Messaging/Ems/Config/EmsNamespaceHandlerTests.cs index 6d289229..bc117bfe 100644 --- a/test/Spring/Spring.Messaging.Ems.Tests/Messaging/Ems/Config/EmsNamespaceHandlerTests.cs +++ b/test/Spring/Spring.Messaging.Ems.Tests/Messaging/Ems/Config/EmsNamespaceHandlerTests.cs @@ -37,7 +37,6 @@ namespace Spring.Messaging.Ems.Config /// This class contains tests for /// /// Mark Pollack - /// $Id:$ [TestFixture] public class EmsNamespaceHandlerTests { diff --git a/test/Spring/Spring.Messaging.Ems.Tests/Messaging/Ems/Config/EmsNamespaceHandlerTests.xml b/test/Spring/Spring.Messaging.Ems.Tests/Messaging/Ems/Config/EmsNamespaceHandlerTests.xml index 5e326b6a..ad631dd3 100644 --- a/test/Spring/Spring.Messaging.Ems.Tests/Messaging/Ems/Config/EmsNamespaceHandlerTests.xml +++ b/test/Spring/Spring.Messaging.Ems.Tests/Messaging/Ems/Config/EmsNamespaceHandlerTests.xml @@ -17,10 +17,13 @@ - - - - + + + + + + +
Spring.NET 1.2.1 SDK Reference DocumentationSpring.NET 1.3.0 RC1 SDK Reference Documentation