Re: [JBoss-dev] MarshalledValue

2003-03-09 Thread Scott M Stark
- 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, Alex

Re: [JBoss-dev] MarshalledValue

2003-03-09 Thread Dain Sundstrom
- 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, Alex Loubyansky wrote: MarshalledValue's

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();

[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;