[
https://issues.apache.org/jira/browse/AMQNET-440?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Timothy Bish updated AMQNET-440:
--------------------------------
Affects Version/s: 1.6.0
> IObjectMessage.ToObject<T> 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
>
> IObjectMessage.ToObject<T> is not working to achieve deserialization.
> The code sample:
> {code}
> protected static void OnMessage(IMessage receivedMsg)
> {
> objMessage = receivedMsg as IObjectMessage;
> //Following code is not working
> IEmployee emp = objMessage.ToObject<IEmployee>();
> //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}
--
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