Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.
The following page has been changed by AnnRobinson: http://wiki.apache.org/ws/FrontPage/Axis2/MessageContextSaveRestore ------------------------------------------------------------------------------ the default serialization mechanism by providing two private methods for reading and writing the object. - private void writeObject ( ObjectOutputStream out ) throws IOException + private void writeObject ( ObjectOutputStream out ) throws IOException - use out.defaultWriteObject() for default serialization private void readObject ( ObjectInputStream in ) throws IOException, - ClassNotFoundException + ClassNotFoundException - use in.defaultReadObject() for default de-serialization The object can also explicitly declare the specific variables or fields to @@ -163, +163 @@ serialization stream. An Externalizable object must implement two methods: - - public void writeExternal ( ObjectOutput out ) throws IOException + public void writeExternal ( ObjectOutput out ) throws IOException - - public void readExternal ( ObjectInput in ) throws IOException, + public void readExternal ( ObjectInput in ) throws IOException, - ClassNotFoundException + ClassNotFoundException and have a public constructor that takes no arguments. In the writeExternal() method, the object must manually write each piece --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]