Error using adapter to create or execute an Interaction. ???
843830Nov 25 2005 — edited Nov 28 2005i am a developer of wsad 5.1.1. , and i have a application in ejb.
i have a problem:
[11/25/05 9:13:45:022 COT] 39fa0d8 DataAccessReq E PMGR6022E: Error using adapter to create or execute an Interaction. ???
[11/25/05 9:13:45:024 COT] 39fa0d8 DataAccessReq E PMGR0000E: Call stack:
com.ibm.ws.ejbpersistence.utilpm.PersistenceManagerException: PMGR6022E: Error using adapter to create or execute an Interaction???
the problem appear in this lines:
try {
AcdasgplnLocal acdasgpln = acdasgplnHome.findAsignatura(
new Integer(estudiante.getCodigoPlan()) ,
new Integer(estudiante.getCodigoPrograma()), clase.getCodigoAsignatura());
cdgAsgNew = acdasgpln.getCdgasg();
setNotaDefinitivaEstudiante(estudiante, clase.getPeriodo(), acdasgpln.getCdgasg(), clase.getCodigoAsignatura(), clase.getTipoCurso(), clase.getNumeroParciales(), codDocente);
} catch (FinderException e) {
cdgAsgNew = Definitiva. materiaAlterna(clase, estudiante);
if(cdgAsgNew == null){
setNotaDefinitivaEstudiante(estudiante, clase.getPeriodo(), clase.getCodigoAsignatura(), clase.getCodigoAsignatura(), clase.getTipoCurso(), clase.getNumeroParciales(), codDocente);
}
else {
setNotaDefinitivaEstudiante(estudiante, clase.getPeriodo(), cdgAsgNew, clase.getCodigoAsignatura(), clase.getTipoCurso(), clase.getNumeroParciales(), codDocente);
}
}
all this is a method inside a Stateless session beans. i call a method of Entity Bean Acdasgpln.
what can i do???