Hello,

Something I forgot to mention in the previous post is that (de)serializing the 
mentioned dialog object works just fine in a stand-alone application using the 
following code:

  | ByteArrayOutputStream bs = new ByteArrayOutputStream();
  | ObjectOutputStream os = new ObjectOutputStream(bs);
  | os.writeObject(dialog);
  | 
  | dialog = null;
  |                     
  | ByteArrayInputStream bi = new ByteArrayInputStream(bs.toByteArray());
  | ObjectInputStream is = new ObjectInputStream(bi);
  | dialog = (Dialog)is.readObject();
  | 

However, if I insert this code into my Bean (not using entity-beans) I still 
get the same error.  So I get the impression this is some kind of bug with 
JBoss?


Kind regards,
Bruno


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3913088#3913088

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3913088


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to