Re: [JBoss-dev] MarshalledValue

2003-03-09 Thread Dain Sundstrom
--- Original Message - From: "Dain Sundstrom" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 08, 2003 4:53 PM Subject: Re: [JBoss-dev] MarshalledValue Scott what is the deal with this? Can I make this change? -dain On Monday, March 3, 2003, at 04:16 AM,

Re: [JBoss-dev] MarshalledValue

2003-03-09 Thread Scott M Stark
Group, LLC - Original Message - From: "Dain Sundstrom" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 08, 2003 4:53 PM Subject: Re: [JBoss-dev] MarshalledValue > Scott what is the deal with this? Can I make this change? > > -dain &

Re: [JBoss-dev] MarshalledValue

2003-03-08 Thread Dain Sundstrom
Scott what is the deal with this? Can I make this change? -dain On Monday, March 3, 2003, at 04:16 AM, Alex Loubyansky wrote: MarshalledValue's constructor is public MarshalledValue(Object obj) throws IOException { baos = new ByteArrayOutputStream(); MarshalledValueOutputStrea

[JBoss-dev] MarshalledValue

2003-03-03 Thread Alex Loubyansky
MarshalledValue's constructor is public MarshalledValue(Object obj) throws IOException { baos = new ByteArrayOutputStream(); MarshalledValueOutputStream mvos = new MarshalledValueOutputStream(baos); mvos.writeObject(obj); mvos.flush(); isHashComputed = false;