Add initial NMS QuickStart application.

Minor bug fix in NMS listener
'VisualSVN' add-in updated files excludes on Spring Core, Aop, Data.
This commit is contained in:
markpollack
2008-08-05 07:58:27 +00:00
parent 5ffea6052d
commit 44f216bac3
39 changed files with 1972 additions and 28 deletions

View File

@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="spring">
<section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core"/>
<section name="parsers" type="Spring.Context.Support.NamespaceParsersSectionHandler, Spring.Core"/>
</sectionGroup>
<sectionGroup name="common">
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
</sectionGroup>
</configSections>
<spring>
<context>
<resource uri="~/Config/Messaging.xml"/>
<resource uri="~/Config/Application.xml"/>
</context>
<parsers>
<parser type="Spring.Messaging.Nms.Config.NmsNamespaceParser, Spring.Messaging.Nms" />
</parsers>
</spring>
<common>
<logging>
<factoryAdapter type="Common.Logging.Simple.ConsoleOutLoggerFactoryAdapter, Common.Logging">
<arg key="showLogName" value="true" />
<arg key="showDataTime" value="true" />
<arg key="level" value="INFO" />
<arg key="dateTimeFormat" value="yyyy/MM/dd HH:mm:ss:fff" />
</factoryAdapter>
</logging>
</common>
</configuration>

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net"
xmlns:nms="http://www.springframework.net/nms">
<!-- MVC objects -->
<object id="StockController" type="Spring.NmsQuickStart.Client.UI.StockController, Spring.NmsQuickStart.Client">
<property name="StockServiceGateway" ref="StockServiceGateway"/>
</object>
<object name="StockAppHandler" type="Spring.NmsQuickStart.Client.Handlers.StockAppHandler, Spring.NmsQuickStart.Client">
<property name="StockController" ref="StockController"/>
</object>
</objects>

View File

@@ -0,0 +1,68 @@
<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net"
xmlns:nms="http://www.springframework.net/nms">
<object id="ConnectionFactory" type="Apache.NMS.ActiveMQ.ConnectionFactory, Apache.NMS.ActiveMQ">
<constructor-arg index="0" value="tcp://localhost:61616"/>
</object>
<!-- NMS based implementation of technology neutral IStockServiceGateway -->
<object name="StockServiceGateway" type="Spring.NmsQuickStart.Client.Gateways.NmsStockServiceGateway, Spring.NmsQuickStart.Client">
<property name="NmsTemplate" ref="NmsTemplate"/>
<property name="DefaultReplyToQueue">
<object type="Apache.NMS.ActiveMQ.Commands.ActiveMQQueue, Apache.NMS.ActiveMQ">
<constructor-arg value="APP.STOCK.JOE"/>
</object>
</property>
</object>
<object name="NmsTemplate" type="Spring.Messaging.Nms.Core.NmsTemplate, Spring.Messaging.Nms">
<property name="ConnectionFactory" ref="ConnectionFactory"/>
<property name="DefaultDestinationName" value="APP.STOCK.REQUEST"/>
<property name="MessageConverter" ref="MultiMessageConverter"/>
</object>
<!-- Consume messages on queue APP.STOCK.JOE -->
<object id="MessagingContainer" type="Spring.Messaging.Nms.Listener.SimpleMessageListenerContainer, Spring.Messaging.Nms">
<property name="ConnectionFactory" ref="ConnectionFactory"/>
<property name="DestinationName" value="APP.STOCK.JOE"/>
<property name="ConcurrentConsumers" value="1"/>
<property name="MessageListener" ref="MessageListenerAdapter"/>
</object>
<!-- Consume messages on topic APP.STOCK.MARKETDATA -->
<object id="MessagingContainerMarketData" type="Spring.Messaging.Nms.Listener.SimpleMessageListenerContainer, Spring.Messaging.Nms">
<property name="ConnectionFactory" ref="ConnectionFactory"/>
<property name="PubSubDomain" value="true"/>
<property name="DestinationName" value="APP.STOCK.MARKETDATA"/>
<property name="ConcurrentConsumers" value="1"/>
<property name="MessageListener" ref="MessageListenerAdapter"/>
</object>
<!-- Plain object message handler -->
<object id="MessageListenerAdapter" type="Spring.Messaging.Nms.Listener.Adapter.MessageListenerAdapter, Spring.Messaging.Nms">
<property name="HandlerObject" ref="StockAppHandler"/>
<property name="DefaultHandlerMethod" value="Handle"/>
<!-- converter from JMS object to plain object -->
<property name="MessageConverter" ref="MultiMessageConverter"/>
</object>
<object name="MultiMessageConverter" type="Spring.NmsQuickStart.Common.Converters.MultiMessageConverter, Spring.NmsQuickStart.Common">
<property name="NamedMessageConverters">
<list>
<ref object="TradeRequestConverter"/>
<ref object="TradeConverter"/>
</list>
</property>
</object>
<object name="TradeRequestConverter" type="Spring.NmsQuickStart.Common.Converters.TradeRequestConverter, Spring.NmsQuickStart.Common"/>
<object name="TradeConverter" type="Spring.NmsQuickStart.Common.Converters.TradeConverter, Spring.NmsQuickStart.Common"/>
</objects>

View File

@@ -0,0 +1,31 @@
#region License
/*
* Copyright 2002-2008 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#endregion
using Spring.NmsQuickStart.Common.Bo;
namespace Spring.NmsQuickStart.Client.Gateways
{
public interface IStockServiceGateway
{
void Send(TradeRequest tradeRequest);
}
}

View File

@@ -0,0 +1,43 @@
using Apache.NMS;
using Spring.Messaging.Nms.Core;
using Spring.NmsQuickStart.Common.Bo;
using Spring.Objects.Factory;
namespace Spring.NmsQuickStart.Client.Gateways
{
public class NmsStockServiceGateway : NmsGatewaySupport, IStockServiceGateway, IInitializingObject
{
private IDestination defaultReplyToQueue;
public IDestination DefaultReplyToQueue
{
set { defaultReplyToQueue = value; }
}
public void Send(TradeRequest tradeRequest)
{
NmsTemplate.ConvertAndSend(tradeRequest, new ReplyToPostProcessor(defaultReplyToQueue));
}
public class ReplyToPostProcessor : IMessagePostProcessor
{
private IDestination replyToDestination;
public ReplyToPostProcessor(IDestination replyToDestination)
{
this.replyToDestination = replyToDestination;
}
public IMessage PostProcessMessage(IMessage message)
{
message.NMSReplyTo = replyToDestination;
return message;
}
}
}
}

View File

@@ -0,0 +1,48 @@
using System.Collections;
using Common.Logging;
using Spring.NmsQuickStart.Client.UI;
using Spring.NmsQuickStart.Common.Bo;
namespace Spring.NmsQuickStart.Client.Handlers
{
public class StockAppHandler
{
#region Logging Definition
private readonly ILog log = LogManager.GetLogger(typeof(StockAppHandler));
#endregion
private StockController stockController;
public StockController StockController
{
get { return stockController; }
set { stockController = value; }
}
public void HandleObject(IDictionary data)
{
log.Info(string.Format("Received market data. Ticker = {0}, Price = {1}", data["TICKER"], data["PRICE"]));
// forward to controller to update view
stockController.UpdateMarketData(data);
}
public void Handle(Trade trade)
{
log.Info(string.Format("Received trade. Ticker = {0}, Price = {1}", trade.Ticker, trade.Price));
stockController.UpdateTrade(trade);
}
public void Handle(object catchAllObject)
{
log.Error("could not handle object of type = " + catchAllObject.GetType());
}
}
}

View File

@@ -0,0 +1,46 @@
using System;
using System.Threading;
using System.Windows.Forms;
using Common.Logging;
using Spring.Context;
using Spring.Context.Support;
using Spring.NmsQuickStart.Client.UI;
namespace Spring.NmsQuickStart.Client
{
static class Program
{
private static readonly ILog log = LogManager.GetLogger(typeof(Program));
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
try
{
log.Info("Running....");
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
using (IApplicationContext ctx = ContextRegistry.GetContext())
{
StockForm stockForm = new StockForm();
Application.ThreadException += ThreadException;
Application.Run(stockForm);
}
}
catch (Exception e)
{
log.Error("Spring.NmsQuickStart.Client is broken.", e);
}
}
private static void ThreadException(object sender, ThreadExceptionEventArgs e)
{
log.Error("Uncaught application exception.", e.Exception);
Application.Exit();
}
}
}

View File

@@ -0,0 +1,33 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Spring.NmsQuickStart.Client")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Spring.NmsQuickStart.Client")]
[assembly: AssemblyCopyright("Copyright © 2008")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("aff1d9ab-7818-4748-8234-8a78e5631899")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -0,0 +1,71 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.1433
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Spring.NmsQuickStart.Client.Properties
{
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Spring.NmsQuickStart.Client.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}

View File

@@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -0,0 +1,30 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.1433
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Spring.NmsQuickStart.Client.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
return defaultInstance;
}
}
}
}

View File

@@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

View File

@@ -0,0 +1,125 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{87D0B725-A652-4A6B-A95F-197F7155769F}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Spring.NmsQuickStart.Client</RootNamespace>
<AssemblyName>Spring.NmsQuickStart.Client</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Apache.NMS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=65e474d141e25e07, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\lib\Net\2.0\Apache.NMS.dll</HintPath>
</Reference>
<Reference Include="Apache.NMS.ActiveMQ, Version=1.0.0.0, Culture=neutral, PublicKeyToken=65e474d141e25e07, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\lib\Net\2.0\Apache.NMS.ActiveMQ.dll</HintPath>
</Reference>
<Reference Include="Common.Logging, Version=1.2.0.0, Culture=neutral, PublicKeyToken=af08829b84f0328e">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\lib\Net\2.0\Common.Logging.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Gateways\IStockServiceGateway.cs" />
<Compile Include="Gateways\NmsStockServiceGateway.cs" />
<Compile Include="Handlers\StockAppHandler.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="UI\StockForm.resx">
<DependentUpon>StockForm.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="App.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<Compile Include="UI\StockController.cs" />
<Compile Include="UI\StockForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="UI\StockForm.designer.cs">
<DependentUpon>StockForm.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Aop\Spring.Aop.2005.csproj">
<Project>{3A3A4E65-45A6-4B20-B460-0BEDC302C02C}</Project>
<Name>Spring.Aop.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Core\Spring.Core.2005.csproj">
<Project>{710961A3-0DF4-49E4-A26E-F5B9C044AC84}</Project>
<Name>Spring.Core.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Data\Spring.Data.2005.csproj">
<Project>{AE00E5AB-C39A-436F-86D2-33BFE33E2E40}</Project>
<Name>Spring.Data.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Messaging.Nms\Spring.Messaging.Nms.2005.csproj">
<Project>{AEB1578C-9018-4D49-B440-789F38DD2F29}</Project>
<Name>Spring.Messaging.Nms.2005</Name>
</ProjectReference>
<ProjectReference Include="..\Spring.NmsQuickStart.Common\Spring.NmsQuickStart.Common.csproj">
<Project>{AC5A3035-75DD-48E5-ABCA-38FBC8193F22}</Project>
<Name>Spring.NmsQuickStart.Common</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="Config\Application.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Config\Messaging.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,55 @@
using System.Collections;
using Spring.NmsQuickStart.Client.Gateways;
using Spring.NmsQuickStart.Common.Bo;
namespace Spring.NmsQuickStart.Client.UI
{
public class StockController
{
private StockForm stockForm;
private IStockServiceGateway stockServiceGateway;
public StockForm StockForm
{
get { return stockForm; }
set { stockForm = value; }
}
public IStockServiceGateway StockServiceGateway
{
get { return stockServiceGateway; }
set { stockServiceGateway = value; }
}
public void SendTradeRequest()
{
TradeRequest tradeRequest = new TradeRequest();
tradeRequest.AccountName = "ACCT-123";
tradeRequest.BuyRequest = true;
tradeRequest.OrderType = "MARKET";
tradeRequest.Quantity = 314000000;
tradeRequest.RequestId = "REQ-1";
tradeRequest.Ticker = "CSCO";
tradeRequest.UserName = "Joe Trader";
stockServiceGateway.Send(tradeRequest);
}
public void UpdateMarketData(IDictionary marketDataDict)
{
stockForm.UpdateMarketData(marketDataDict);
}
public void UpdateTrade(Trade trade)
{
stockForm.UpdateTrade(trade);
}
}
}

View File

@@ -0,0 +1,61 @@
using System;
using System.Collections;
using System.Windows.Forms;
using Common.Logging;
using Spring.Context.Support;
using Spring.NmsQuickStart.Common.Bo;
namespace Spring.NmsQuickStart.Client.UI
{
public partial class StockForm : Form
{
#region Logging Definition
private static readonly ILog log = LogManager.GetLogger(typeof (StockForm));
#endregion
private StockController stockController;
public StockForm()
{
InitializeComponent();
stockController = ContextRegistry.GetContext()["StockController"] as StockController;
stockController.StockForm = this;
}
public StockController Controller
{
set { stockController = value; }
}
private void OnSendTradeRequest(object sender, EventArgs e)
{
//In this simple example no data is collected from the view.
//Instead a hardcoded trade request is created in the controller.
tradeRequestStatusTextBox.Text = "Request Pending...";
stockController.SendTradeRequest();
log.Info("Sent trade request.");
}
public void UpdateTrade(Trade trade)
{
Invoke(new MethodInvoker(
delegate
{
tradeRequestStatusTextBox.Text = "Confirmed. " + trade.Ticker + " " + trade.Price;
}));
}
public void UpdateMarketData(IDictionary marketDataDict)
{
Invoke(new MethodInvoker(
delegate
{
marketDataListBox.Items.Add(marketDataDict["TICKER"] + " " + marketDataDict["PRICE"]);
}));
}
}
}

View File

@@ -0,0 +1,126 @@
namespace Spring.NmsQuickStart.Client.UI
{
partial class StockForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.tradeRequestButton = new System.Windows.Forms.Button();
this.tradeRequestStatusTextBox = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.portfolioListBox = new System.Windows.Forms.ListBox();
this.marketDataListBox = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// tradeRequestButton
//
this.tradeRequestButton.Location = new System.Drawing.Point(12, 12);
this.tradeRequestButton.Name = "tradeRequestButton";
this.tradeRequestButton.Size = new System.Drawing.Size(135, 23);
this.tradeRequestButton.TabIndex = 0;
this.tradeRequestButton.Text = "Send Trade Request";
this.tradeRequestButton.UseVisualStyleBackColor = true;
this.tradeRequestButton.Click += new System.EventHandler(this.OnSendTradeRequest);
//
// tradeRequestStatusTextBox
//
this.tradeRequestStatusTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tradeRequestStatusTextBox.Location = new System.Drawing.Point(154, 13);
this.tradeRequestStatusTextBox.Name = "tradeRequestStatusTextBox";
this.tradeRequestStatusTextBox.Size = new System.Drawing.Size(340, 20);
this.tradeRequestStatusTextBox.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(12, 41);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(135, 23);
this.button1.TabIndex = 2;
this.button1.Text = "Get Portfolio";
this.button1.UseVisualStyleBackColor = true;
//
// portfolioListBox
//
this.portfolioListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.portfolioListBox.FormattingEnabled = true;
this.portfolioListBox.Location = new System.Drawing.Point(154, 41);
this.portfolioListBox.Name = "portfolioListBox";
this.portfolioListBox.Size = new System.Drawing.Size(340, 108);
this.portfolioListBox.TabIndex = 3;
//
// marketDataListBox
//
this.marketDataListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.marketDataListBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
this.marketDataListBox.FormattingEnabled = true;
this.marketDataListBox.ItemHeight = 14;
this.marketDataListBox.Location = new System.Drawing.Point(90, 155);
this.marketDataListBox.Name = "marketDataListBox";
this.marketDataListBox.Size = new System.Drawing.Size(404, 102);
this.marketDataListBox.TabIndex = 4;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 155);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(72, 13);
this.label1.TabIndex = 5;
this.label1.Text = "Market Data :";
//
// StockForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(506, 269);
this.Controls.Add(this.label1);
this.Controls.Add(this.marketDataListBox);
this.Controls.Add(this.portfolioListBox);
this.Controls.Add(this.button1);
this.Controls.Add(this.tradeRequestStatusTextBox);
this.Controls.Add(this.tradeRequestButton);
this.Name = "StockForm";
this.Text = "TradeForm";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button tradeRequestButton;
private System.Windows.Forms.TextBox tradeRequestStatusTextBox;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.ListBox portfolioListBox;
private System.Windows.Forms.ListBox marketDataListBox;
private System.Windows.Forms.Label label1;
}
}

View File

@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -0,0 +1,40 @@
namespace Spring.NmsQuickStart.Common.Bo
{
public class Trade
{
private string ticker;
private long quantity;
private double price;
private string orderType;
public string Ticker
{
get { return ticker; }
set { ticker = value; }
}
public long Quantity
{
get { return quantity; }
set { quantity = value; }
}
public double Price
{
get { return price; }
set { price = value; }
}
public string OrderType
{
get { return orderType; }
set { orderType = value; }
}
}
}

View File

@@ -0,0 +1,97 @@
using System.Collections;
namespace Spring.NmsQuickStart.Common.Bo
{
public class TradeRequest
{
private string ticker;
private long quantity;
private double price;
private string orderType;
private string accountName;
private bool buyRequest;
private string userName;
private string requestId;
public string Ticker
{
get { return ticker; }
set { ticker = value; }
}
public long Quantity
{
get { return quantity; }
set { quantity = value; }
}
public double Price
{
get { return price; }
set { price = value; }
}
public string OrderType
{
get { return orderType; }
set { orderType = value; }
}
public string AccountName
{
get { return accountName; }
set { accountName = value; }
}
public bool BuyRequest
{
get { return buyRequest; }
set { buyRequest = value; }
}
public string UserName
{
get { return userName; }
set { userName = value; }
}
public string RequestId
{
get { return requestId; }
set { requestId = value; }
}
public bool Validate(IList validationErrors)
{
// Not intended to be an example best practices for validation
// The intention is to include some simple behavior in the class
if (userName == null)
{
validationErrors.Add("User name not specified");
}
if (requestId == null || requestId.Length == 0)
{
validationErrors.Add("Request Id not specified");
}
if (!orderType.Equals("MARKET"))
{
if (price <= 0)
{
validationErrors.Add("Market order must have a price");
}
}
return validationErrors.Count > 0;
}
}
}

View File

@@ -0,0 +1,30 @@
using System;
using Apache.NMS;
using Spring.Objects.Factory;
namespace Spring.NmsQuickStart.Common.Converters
{
public abstract class AbstractNamedMessageConverter : INamedMessageConverter, IObjectNameAware
{
private string objectName;
public string Name
{
get { return objectName; }
set { objectName = value; }
}
public abstract Type TargetType { get; }
public string ObjectName
{
set { objectName = value; }
}
public abstract IMessage ToMessage(object objectToConvert, ISession session);
public abstract object FromMessage(IMessage messageToConvert);
}
}

View File

@@ -0,0 +1,34 @@
#region License
/*
* Copyright 2002-2008 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#endregion
using System;
using Spring.Messaging.Nms.Support.Converter;
namespace Spring.NmsQuickStart.Common.Converters
{
public interface INamedMessageConverter : IMessageConverter
{
string Name { get; set; }
Type TargetType { get; }
}
}

View File

@@ -0,0 +1,110 @@
using System;
using System.Collections;
using Apache.NMS;
using Spring.Messaging.Nms.Support.Converter;
using Spring.Objects.Factory;
namespace Spring.NmsQuickStart.Common.Converters
{
public class MultiMessageConverter : IMessageConverter, IInitializingObject
{
private IMessageConverter defaultMessageConverter = new SimpleMessageConverter();
private IDictionary typeConverterMapping = new Hashtable();
private IDictionary nameConverterMapping = new Hashtable();
private IList namedMessageConverters = new ArrayList();
public MultiMessageConverter()
{
}
public IList NamedMessageConverters
{
set { namedMessageConverters = value; }
}
private string converterIdFieldName = "__ConverterId__";
public IMessage ToMessage(object objectToConvert, ISession session)
{
if (objectToConvert == null)
{
throw new MessageConversionException("Can't convert null object");
}
if (objectToConvert.GetType().Equals(typeof(string)) ||
typeof(IDictionary).IsAssignableFrom(objectToConvert.GetType()) ||
objectToConvert.GetType().Equals(typeof(Byte[])))
{
return defaultMessageConverter.ToMessage(objectToConvert, session);
}
else
{
INamedMessageConverter converter = GetConverterForType(objectToConvert.GetType());
if (converter != null)
{
IMessage msg = converter.ToMessage(objectToConvert, session);
msg.Properties.SetString(converterIdFieldName, converter.Name);
return msg;
}
throw new MessageConversionException("Can't convert object of type " + objectToConvert.GetType());
}
}
private INamedMessageConverter GetConverterForType(Type typeOfObjectToConvert)
{
if (typeConverterMapping.Contains(typeOfObjectToConvert))
{
return typeConverterMapping[typeOfObjectToConvert] as INamedMessageConverter;
}
return null;
}
public object FromMessage(IMessage messageToConvert)
{
if (messageToConvert == null)
{
throw new MessageConversionException("Can't convert null message");
}
string converterId = messageToConvert.Properties.GetString(converterIdFieldName);
if (converterId == null)
{
return defaultMessageConverter.FromMessage(messageToConvert);
}
else
{
IMessageConverter converter = GetConverterForId(converterId);
if (converter != null)
{
return converter.FromMessage(messageToConvert);
}
throw new MessageConversionException("Can't convert message with ConverterId = " + converterId + ". Message = " + messageToConvert);
}
}
private IMessageConverter GetConverterForId(string converterName)
{
if (nameConverterMapping.Contains(converterName))
{
return nameConverterMapping[converterName] as IMessageConverter;
}
return null;
}
public void AfterPropertiesSet()
{
foreach (INamedMessageConverter namedMessageConverter in namedMessageConverters)
{
nameConverterMapping.Add(namedMessageConverter.Name, namedMessageConverter);
typeConverterMapping.Add(namedMessageConverter.TargetType, namedMessageConverter);
}
}
}
}

View File

@@ -0,0 +1,61 @@
using System;
using Apache.NMS;
using Spring.Messaging.Nms.Support.Converter;
using Spring.NmsQuickStart.Common.Bo;
namespace Spring.NmsQuickStart.Common.Converters
{
public class TradeConverter : AbstractNamedMessageConverter
{
public override Type TargetType
{
get { return typeof (Trade); }
}
public override IMessage ToMessage(object objectToConvert, ISession session)
{
Trade trade = objectToConvert as Trade;
if (trade == null)
{
throw new MessageConversionException("TradeConverter can not convert object of type " +
objectToConvert.GetType());
}
try
{
IMapMessage mm = session.CreateMapMessage();
mm.Body.SetString("orderType", trade.OrderType);
mm.Body.SetDouble("price", trade.Price);
mm.Body.SetLong("quantity", trade.Quantity);
mm.Body.SetString("ticker", trade.Ticker);
return mm;
}
catch (Exception e)
{
throw new MessageConversionException("Could not convert TradeRequest to message", e);
}
}
public override object FromMessage(IMessage messageToConvert)
{
IMapMessage mm = messageToConvert as IMapMessage;
if (mm != null)
{
Trade trade = new Trade();
trade.OrderType = mm.Body.GetString("orderType");
trade.Price = mm.Body.GetDouble("price");
trade.Quantity = mm.Body.GetLong("quantity");
trade.Ticker = mm.Body.GetString("ticker");
return trade;
}
else
{
throw new MessageConversionException("Not of expected type MapMessage. Message = " + messageToConvert);
}
}
}
}

View File

@@ -0,0 +1,69 @@
using System;
using Apache.NMS;
using Spring.Messaging.Nms.Support.Converter;
using Spring.NmsQuickStart.Common.Bo;
namespace Spring.NmsQuickStart.Common.Converters
{
public class TradeRequestConverter : AbstractNamedMessageConverter
{
public override IMessage ToMessage(object objectToConvert, ISession session)
{
TradeRequest tradeRequest = objectToConvert as TradeRequest;
if (tradeRequest == null)
{
throw new MessageConversionException("TradeRequestConverter can not convert object of type " +
objectToConvert.GetType());
}
try
{
IMapMessage mm = session.CreateMapMessage();
mm.Body.SetString("accountName", tradeRequest.AccountName);
mm.Body.SetBool("buyRequest", tradeRequest.BuyRequest);
mm.Body.SetString("orderType", tradeRequest.OrderType);
mm.Body.SetDouble("price", tradeRequest.Price);
mm.Body.SetLong("quantity", tradeRequest.Quantity);
mm.Body.SetString("requestId", tradeRequest.RequestId);
mm.Body.SetString("ticker", tradeRequest.Ticker);
mm.Body.SetString("username", tradeRequest.UserName);
return mm;
} catch (Exception e)
{
throw new MessageConversionException("Could not convert TradeRequest to message", e);
}
}
public override object FromMessage(IMessage messageToConvert)
{
IMapMessage mm = messageToConvert as IMapMessage;
if (mm != null)
{
TradeRequest tradeRequest = new TradeRequest();
tradeRequest.AccountName = mm.Body.GetString("accountName");
tradeRequest.BuyRequest = mm.Body.GetBool("buyRequest");
tradeRequest.OrderType = mm.Body.GetString("orderType");
tradeRequest.Price = mm.Body.GetDouble("price");
tradeRequest.Quantity = mm.Body.GetLong("quantity");
tradeRequest.RequestId = mm.Body.GetString("requestId");
tradeRequest.Ticker = mm.Body.GetString("ticker");
tradeRequest.UserName = mm.Body.GetString("username");
return tradeRequest;
}
else
{
throw new MessageConversionException("Not of expected type MapMessage. Message = " + messageToConvert);
}
}
public override Type TargetType
{
get { return typeof (TradeRequest); }
}
}
}

View File

@@ -0,0 +1,35 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Spring.NmsQuickStart.Common")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Spring.NmsQuickStart.Common")]
[assembly: AssemblyCopyright("Copyright © 2008")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("0d2c3d0f-af2f-47aa-9441-c3bd966f94f7")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -0,0 +1,79 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{AC5A3035-75DD-48E5-ABCA-38FBC8193F22}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Spring.NmsQuickStart.Common</RootNamespace>
<AssemblyName>Spring.NmsQuickStart.Common</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Apache.NMS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=65e474d141e25e07, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\lib\Net\2.0\Apache.NMS.dll</HintPath>
</Reference>
<Reference Include="Apache.NMS.ActiveMQ, Version=1.0.0.0, Culture=neutral, PublicKeyToken=65e474d141e25e07, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\lib\Net\2.0\Apache.NMS.ActiveMQ.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Bo\Trade.cs" />
<Compile Include="Bo\TradeRequest.cs" />
<Compile Include="Converters\AbstractNamedMessageConverter.cs" />
<Compile Include="Converters\MultiMessageConverter.cs" />
<Compile Include="Converters\INamedMessageConverter.cs" />
<Compile Include="Converters\TradeConverter.cs" />
<Compile Include="Converters\TradeRequestConverter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Aop\Spring.Aop.2005.csproj">
<Project>{3A3A4E65-45A6-4B20-B460-0BEDC302C02C}</Project>
<Name>Spring.Aop.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Core\Spring.Core.2005.csproj">
<Project>{710961A3-0DF4-49E4-A26E-F5B9C044AC84}</Project>
<Name>Spring.Core.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Data\Spring.Data.2005.csproj">
<Project>{AE00E5AB-C39A-436F-86D2-33BFE33E2E40}</Project>
<Name>Spring.Data.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Messaging.Nms\Spring.Messaging.Nms.2005.csproj">
<Project>{AEB1578C-9018-4D49-B440-789F38DD2F29}</Project>
<Name>Spring.Messaging.Nms.2005</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="spring">
<section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core"/>
<section name="parsers" type="Spring.Context.Support.NamespaceParsersSectionHandler, Spring.Core"/>
</sectionGroup>
<sectionGroup name="common">
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
</sectionGroup>
</configSections>
<spring>
<context>
<resource uri="~/Config/Messaging.xml"/>
<resource uri="~/Config/Services.xml"/>
</context>
<parsers>
<parser type="Spring.Messaging.Nms.Config.NmsNamespaceParser, Spring.Messaging.Nms" />
</parsers>
</spring>
<common>
<logging>
<factoryAdapter type="Common.Logging.Simple.ConsoleOutLoggerFactoryAdapter, Common.Logging">
<arg key="showLogName" value="true" />
<arg key="showDataTime" value="true" />
<arg key="level" value="INFO" />
<arg key="dateTimeFormat" value="yyyy/MM/dd HH:mm:ss:fff" />
</factoryAdapter>
</logging>
</common>
</configuration>

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net"
xmlns:nms="http://www.springframework.net/nms">
<object id="ConnectionFactory" type="Apache.NMS.ActiveMQ.ConnectionFactory, Apache.NMS.ActiveMQ">
<constructor-arg index="0" value="tcp://localhost:61616"/>
</object>
<!-- Consume messages on queue APP.STOCK.REQUEST -->
<object id="MessageListenerContainer" type="Spring.Messaging.Nms.Listener.SimpleMessageListenerContainer, Spring.Messaging.Nms">
<property name="ConnectionFactory" ref="ConnectionFactory"/>
<property name="DestinationName" value="APP.STOCK.REQUEST"/>
<property name="ConcurrentConsumers" value="1"/>
<property name="MessageListener" ref="MessageListenerAdapter"/>
</object>
<!-- Plain object message handler -->
<object id="MessageListenerAdapter" type="Spring.Messaging.Nms.Listener.Adapter.MessageListenerAdapter, Spring.Messaging.Nms">
<property name="HandlerObject" ref="StockAppHandler"/>
<property name="DefaultHandlerMethod" value="Handle"/>
<!-- converter from JMS object to plain object -->
<property name="MessageConverter" ref="MultiMessageConverter"/>
</object>
<object name="MultiMessageConverter" type="Spring.NmsQuickStart.Common.Converters.MultiMessageConverter, Spring.NmsQuickStart.Common">
<property name="NamedMessageConverters">
<list>
<ref object="TradeRequestConverter"/>
<ref object="TradeConverter"/>
</list>
</property>
</object>
<object name="TradeRequestConverter" type="Spring.NmsQuickStart.Common.Converters.TradeRequestConverter, Spring.NmsQuickStart.Common"/>
<object name="TradeConverter" type="Spring.NmsQuickStart.Common.Converters.TradeConverter, Spring.NmsQuickStart.Common"/>
</objects>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net">
<object name="StockAppHandler" type="Spring.NmsQuickStart.Server.Handlers.StockAppHandler, Spring.NmsQuickStart.Server">
</object>
</objects>

View File

@@ -0,0 +1,20 @@
using Common.Logging;
using Spring.NmsQuickStart.Common.Bo;
namespace Spring.NmsQuickStart.Server.Handlers
{
public class StockAppHandler
{
private static readonly ILog log = LogManager.GetLogger(typeof(StockAppHandler));
public Trade Handle(TradeRequest tradeRequest)
{
log.Info("Received TradeRequest");
return new Trade();
}
}
}

View File

@@ -0,0 +1,26 @@
using System;
using Spring.Context.Support;
namespace Spring.NmsQuickStart.Server
{
public class Program
{
static void Main(string[] args)
{
try
{
// Using Spring's IoC container
ContextRegistry.GetContext(); // Force Spring to load configuration
Console.Out.WriteLine("Server listening...");
Console.Out.WriteLine("--- Press <return> to quit ---");
Console.ReadLine();
}
catch (Exception e)
{
Console.Out.WriteLine(e);
Console.Out.WriteLine("--- Press <return> to quit ---");
Console.ReadLine();
}
}
}
}

View File

@@ -0,0 +1,33 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Spring.NmsQuickStart.Server")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Spring.NmsQuickStart.Server")]
[assembly: AssemblyCopyright("Copyright © 2008")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("3e4b803d-86c9-4634-9b38-e29d70a083e0")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -0,0 +1,97 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{85E7B947-8153-45E4-B572-BEDB191F1FB2}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Spring.NmsQuickStart.Server</RootNamespace>
<AssemblyName>Spring.NmsQuickStart.Server</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Apache.NMS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=65e474d141e25e07, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\lib\Net\2.0\Apache.NMS.dll</HintPath>
</Reference>
<Reference Include="Apache.NMS.ActiveMQ, Version=1.0.0.0, Culture=neutral, PublicKeyToken=65e474d141e25e07, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\lib\Net\2.0\Apache.NMS.ActiveMQ.dll</HintPath>
</Reference>
<Reference Include="Common.Logging, Version=1.2.0.0, Culture=neutral, PublicKeyToken=af08829b84f0328e">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\lib\Net\2.0\Common.Logging.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Handlers\StockAppHandler.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Aop\Spring.Aop.2005.csproj">
<Project>{3A3A4E65-45A6-4B20-B460-0BEDC302C02C}</Project>
<Name>Spring.Aop.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Core\Spring.Core.2005.csproj">
<Project>{710961A3-0DF4-49E4-A26E-F5B9C044AC84}</Project>
<Name>Spring.Core.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Data\Spring.Data.2005.csproj">
<Project>{AE00E5AB-C39A-436F-86D2-33BFE33E2E40}</Project>
<Name>Spring.Data.2005</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\src\Spring\Spring.Messaging.Nms\Spring.Messaging.Nms.2005.csproj">
<Project>{AEB1578C-9018-4D49-B440-789F38DD2F29}</Project>
<Name>Spring.Messaging.Nms.2005</Name>
</ProjectReference>
<ProjectReference Include="..\Spring.NmsQuickStart.Common\Spring.NmsQuickStart.Common.csproj">
<Project>{AC5A3035-75DD-48E5-ABCA-38FBC8193F22}</Project>
<Name>Spring.NmsQuickStart.Common</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="Config\Messaging.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Config\Services.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Converters\" />
<Folder Include="Gateways\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,41 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E641F51F-1B51-4B94-B419-F902EABCE4D4}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Spring</RootNamespace>
<AssemblyName>Spring.NmsQuickStart.Integration.Tests</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\build\VS.NET.2005\Spring.NmsQuickStart.Integration.Tests\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\build\VS.NET.2005\Spring.NmsQuickStart.Integration.Tests\Release\</OutputPath>
<DefineConstants>TRACE;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,41 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{94E4E1B4-D424-4EB9-BF34-2EE8CC3D7048}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Spring</RootNamespace>
<AssemblyName>Spring.NmsQuickStart.Tests</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\build\VS.NET.2005\Spring.NmsQuickStart.Tests\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\build\VS.NET.2005\Spring.NmsQuickStart.Tests\Release\</OutputPath>
<DefineConstants>TRACE;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -91,7 +91,7 @@ namespace Spring.Messaging.Nms.Core
/// <summary>
/// Ensures that the JmsTemplate is specified and calls <see cref="InitGateway"/>.
/// </summary>
public void AfterPropertiesSet()
public virtual void AfterPropertiesSet()
{
if (jmsTemplate == null)
{

View File

@@ -68,7 +68,7 @@ namespace Spring.Messaging.Nms.Listener.Adapter
/// </remarks>
/// <author>Juergen Hoeller</author>
/// <author>Mark Pollack (.NET)</author>
public class MessageListenerAdapter : IMessageListener
public class MessageListenerAdapter : IMessageListener, ISessionAwareMessageListener
{
#region Logging

View File

@@ -45,11 +45,11 @@ namespace Spring.Messaging.Nms.Support.Converter
IMessage ToMessage(object objectToConvert, ISession session);
/// <summary> Convert from a NMS Message to a .NET object.</summary>
/// <param name="message">the message to convert
/// <param name="messageToConvert">the message to convert
/// </param>
/// <returns> the converted .NET object
/// </returns>
/// <throws>MessageConversionException in case of conversion failure </throws>
object FromMessage(IMessage message);
object FromMessage(IMessage messageToConvert);
}
}

View File

@@ -42,7 +42,7 @@ namespace Spring.Messaging.Nms.Support.Converter
/// <summary> Convert a .NET object to a NMS Message using the supplied session
/// to create the message object.
/// </summary>
/// <param name="objectToConvert">the object to convert
/// <param name="object">the object to convert
/// </param>
/// <param name="session">the Session to use for creating a NMS Message
/// </param>
@@ -50,62 +50,62 @@ namespace Spring.Messaging.Nms.Support.Converter
/// </returns>
/// <throws>NMSException if thrown by NMS API methods </throws>
/// <throws>MessageConversionException in case of conversion failure </throws>
public IMessage ToMessage(object objectToConvert, ISession session)
public IMessage ToMessage(object @object, ISession session)
{
if (objectToConvert is IMessage)
if (@object is IMessage)
{
return (IMessage) objectToConvert;
return (IMessage) @object;
}
else if (objectToConvert is string)
else if (@object is string)
{
return CreateMessageForString((string) objectToConvert, session);
return CreateMessageForString((string) @object, session);
}
else if (objectToConvert is sbyte[])
else if (@object is sbyte[])
{
return CreateMessageForByteArray((byte[]) objectToConvert, session);
return CreateMessageForByteArray((byte[]) @object, session);
}
else if (objectToConvert is IDictionary)
else if (@object is IDictionary)
{
return CreateMessageForMap((IDictionary) objectToConvert, session);
return CreateMessageForMap((IDictionary) @object, session);
}
else if (objectToConvert is ISerializable)
else if (@object is ISerializable)
{
return
CreateMessageForSerializable(((ISerializable) objectToConvert), session);
CreateMessageForSerializable(((ISerializable) @object), session);
}
else
{
throw new MessageConversionException("Cannot convert object [" + objectToConvert + "] to NMS message");
throw new MessageConversionException("Cannot convert object [" + @object + "] to NMS message");
}
}
/// <summary> Convert from a NMS Message to a .NET object.</summary>
/// <param name="message">the message to convert
/// <param name="messageToConvert">the message to convert
/// </param>
/// <returns> the converted .NET object
/// </returns>
/// <throws>MessageConversionException in case of conversion failure </throws>
public object FromMessage(IMessage message)
public object FromMessage(IMessage messageToConvert)
{
if (message is ITextMessage)
if (messageToConvert is ITextMessage)
{
return ExtractStringFromMessage((ITextMessage) message);
return ExtractStringFromMessage((ITextMessage) messageToConvert);
}
else if (message is IBytesMessage)
else if (messageToConvert is IBytesMessage)
{
return ExtractByteArrayFromMessage((IBytesMessage) message);
return ExtractByteArrayFromMessage((IBytesMessage) messageToConvert);
}
else if (message is IMapMessage)
else if (messageToConvert is IMapMessage)
{
return ExtractMapFromMessage((IMapMessage) message);
return ExtractMapFromMessage((IMapMessage) messageToConvert);
}
else if (message is IObjectMessage)
else if (messageToConvert is IObjectMessage)
{
return ExtractSerializableFromMessage((IObjectMessage) message);
return ExtractSerializableFromMessage((IObjectMessage) messageToConvert);
}
else
{
return message;
return messageToConvert;
}
}