Re: Thinking about Extensible Serialization support.

2021-01-29 Thread Peter Firmstone
Hi Gregg, Yes, of course, if the service was using Java Serialization, the bytes would be the same, but if a different Serialzation protocol was used, the bytes would be different, appropriate for the serialization protocol in use, these bytes would be transferred over existing transport

Re: Thinking about Extensible Serialization support.

2021-01-29 Thread Gregg Wonderly
Can you speak to why it would be different than the stream of bytes that existing serialization creates through Object methods to help clarify? Gregg Sent from my iPhone > On Jan 29, 2021, at 3:46 PM, Peter Firmstone > wrote: > > A question came up recently about supporting other

Thinking about Extensible Serialization support.

2021-01-29 Thread Peter Firmstone
A question came up recently about supporting other serialization protocols. JERI currently has three layers to it's protocol stack: Invocation Layer, Object identification layer Transport layer. Java Serialization doesn't have a public API, I think this would be one reason there is no