New to protobuf, need your kind advice please.
I have a JMS subscriber which is receiving a message (Type -> com.tibco.tibjmsTibjmsBytesMessage) from a TIBCO queue. The messages have been published as Protobuf bytes message on the queue. As as subscriber I have converted these bytesMessage to byte array. Since I have the protobuf message's JAVA class protoFile.class, hence in order to deserialize the byte array, I am calling the protoFile.parseFrom(byte[] data) function. However in response I see that the values of all the fields are empty.
Can someone please suggest what is being missed ? All I need is to read the data from my Protobuf bytes message and assign them to java objects. I do not have the schema of the proto file, only have the compiled JAVA class of the proto file say protoFile.class
TIA!