Return-Path: X-Original-To: apmail-activemq-dev-archive@www.apache.org Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A8A84100CB for ; Mon, 5 Aug 2013 13:45:51 +0000 (UTC) Received: (qmail 77165 invoked by uid 500); 5 Aug 2013 13:45:51 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 77113 invoked by uid 500); 5 Aug 2013 13:45:50 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 77031 invoked by uid 99); 5 Aug 2013 13:45:48 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Aug 2013 13:45:48 +0000 Date: Mon, 5 Aug 2013 13:45:48 +0000 (UTC) From: "Timothy Bish (JIRA)" To: dev@activemq.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (AMQNET-440) IObjectMessage.ToObject is not working MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/AMQNET-440?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13729513#comment-13729513 ] Timothy Bish commented on AMQNET-440: ------------------------------------- There are a number of unit tests in the src bundle, suggest to try to recreate your issue in a NUnit test and see if you can come up with a patch. > IObjectMessage.ToObject is not working > ----------------------------------------- > > Key: AMQNET-440 > URL: https://issues.apache.org/jira/browse/AMQNET-440 > Project: ActiveMQ .Net > Issue Type: Bug > Affects Versions: 1.6.0 > Environment: activeMQ 5.8.0, C# API NMS 1.6.0 > Reporter: Tamilmaran > > Hi > I am working on NMS API 1.6.0. i am not able to deserizile using the following object deserilization mechanism > objMessage.ToObject or > objMessage.ToObject() as T > Please help us to overcome the issue. > Please find our codes below. > The code sample: > {code} > _consumer.Listener += new MessageListener(OnMessage); > Employee emp = new Employee(); > emp.FirstName = "raj"; > emp.LastName = "esh"; > > IObjectMessage objectMessage = producer.CreateObjectMessage(emp); > objectMessage.NMSType = emp.GetType().ToString(); > producer.Send(objectMessage); > {code} > {code} > protected static void OnMessage(IMessage receivedMsg) > { > IObjectMessage objMessage = receivedMsg as IObjectMessage; > //Following code is not working > IEmployee emp = objMessage.ToObject(); > //Following code is not working > IEmployee emp1 = objMessage.ToObject() as IEmployee; > //Following code is working > IEmployee iEmp = objMessage.Body as IEmployee;//This code only is working > } > {code} > {code} > public interface IEmployee > { > string FirstName { get; set; } > string LastName { get; set; } > } > {code} > {code} > [Serializable] > public class Employee : IEmployee > { > #region IEmployee Members > private string _firstName; > private string _lastName; > public string FirstName > { > get > { > return this._firstName; > } > set > { > this._firstName = value; > } > } > public string LastName > { > get > { > return this._lastName; > } > set > { > this._lastName = value; > } > } > #endregion > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira