Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Error using adapter to create or execute an Interaction. ???

843830Nov 25 2005 — edited Nov 28 2005
i 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???
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 26 2005
Added on Nov 25 2005
1 comment
1,461 views