[jboss-user] [JBoss Messaging] - Re: Classloading issues with EJBs; messages in EJB classload

clebert.suconic@jboss.com do-not-reply at jboss.com
Fri Mar 16 11:07:04 EDT 2007


StreamUtils should be using something like ObjectInputStreamWithClassLoader.

  | 
  |          case SERIALIZABLE:
  |          {
  |             ObjectInputStream ois;
  |             if (useJBossSerialization)
  |             {
  |                ois = new JBossObjectInputStream(in);
  |             }
  |             else
  |             {
  |                ois = new ObjectInputStream(in);
  |             }
  |                         
  |             value = (Serializable)ois.readObject();
  |             break;
  |          }              
  | 

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

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



More information about the jboss-user mailing list