I am trying to write message to a file using serialization.Message consists of two fields-
date and TibrvMsg
(TibrvMsg
is a propriotory message by Tibco and this class is not serializable as per their documentation).So my custom message is:
Message msg = new Message(TibrvMsg msg)
Problem is though i am declaring Message Serializable
, i am not able to serialize it as TibrvMsg
is not serializable.
So i get java.io.NotSerializableException: com.tibco.tibrv.TibrvMsg
exception.