java.io.NotSerializableException
Estoy intentando hacer un lookup al contexto ya obtenido de weblogic, y me da este error al hacer el lookup.
Context myContext = null;
Hashtable ht = new Hashtable();
ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
ht.put(Context.PROVIDER_URL,"t3://localhost:7001");
ht.put(Context.SECURITY_PRINCIPAL,"system");
ht.put(Context.SECURITY_CREDENTIALS,"12345678");
try
{
myContext = new InitialContext(ht);
System.out.println("Obtuvimos el contexto");
Session mySession = (Session) myContext.lookup("MyMailSession");
.....
.....
la excepcion esta capturada en un catch mas abajo, y el servidor Weblogic esta funcionando en ese puerto.
Alguna solucion?
Context myContext = null;
Hashtable ht = new Hashtable();
ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
ht.put(Context.PROVIDER_URL,"t3://localhost:7001");
ht.put(Context.SECURITY_PRINCIPAL,"system");
ht.put(Context.SECURITY_CREDENTIALS,"12345678");
try
{
myContext = new InitialContext(ht);
System.out.println("Obtuvimos el contexto");
Session mySession = (Session) myContext.lookup("MyMailSession");
.....
.....
la excepcion esta capturada en un catch mas abajo, y el servidor Weblogic esta funcionando en ese puerto.
Alguna solucion?