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
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to