View Single Post
  #2 (permalink)  
Old 10-07-2005
mes's Avatar
mes mes is online now
ZeroC Staff
 
Name: Mark Spruiell
Organization: ZeroC, Inc.
Project: Ice Developer
 
Join Date: Feb 2003
Location: California
Posts: 971
Hi Brian,

The ObjectInputStream and ObjectOutputStream classes only perform "marshaling", i.e., they translate Java primitive and object types into a binary format, and vice versa. They can be wrapped around another stream, such as one you might get from a network connection, but they don't perform any networking tasks themselves. You'll need to examine the legacy application in more detail to discover the origin of the underlying stream.

Hope that helps,
- Mark
Reply With Quote