[hibernate-issues] [Hibernate-JIRA] Closed: (HHH-2270) Could not synchronize database state with session - and contraint problem

Max Rydahl Andersen (JIRA) noreply at atlassian.com
Wed Nov 29 06:41:04 EST 2006


     [ http://opensource.atlassian.com/projects/hibernate/browse/HHH-2270?page=all ]
     
Max Rydahl Andersen closed HHH-2270:
------------------------------------

    Resolution: Rejected

not a bug, goto forum.hibernate.org 

> Could not synchronize database state with session - and contraint problem
> -------------------------------------------------------------------------
>
>          Key: HHH-2270
>          URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2270
>      Project: Hibernate3
>         Type: Bug

>     Versions: 3.1.3
>  Environment: Hibernate 3.1.3,Oracle 9, WSAD
>     Reporter: Koka Durgababu

>
>
> Hi 
>      Here is my code...
> if(userSkippedItems != null)
> {
> 	tx = session.beginTransaction();
> 	for(int i=0;i<userSkippedItems.length;i++)
> 	    {
> 		System.out.println("selectedSkipItems.length Manager--------> " +userSkippedItems.length);
> 		IBCSearchDAO ibcDAO = new IBCSearchDAO();
> 		ibcDAO = ibcManager.loadTftImpBillTnx(session,userSkippedItems[i]);
> 		if(ibcDAO != null)
> 			{
> 			 // Insert into master table first
> 			session.save(setImpDAO(ibcDAO));
> 			session.flush(); //force the SQL INSERT
>       
> 		       // Insert into Transaction table
> 			session.save(setImpTnxDAO(ibcDAO,i));
> 			session.flush(); //force the SQL INSERT
> 			}
> 		tx.commit();
> 	   }
> }	
> ----------------------and the log is 
> int (OPS$CBIR.CBIR_IMP_PK) violated
> [11/29/06 16:33:37:765 SGT] 197d6476 AbstractFlush E org.hibernate.event.def.AbstractFlushingEventListener  Could not synchronize database state with session
> [11/29/06 16:33:37:827 SGT] 2c0ba470 AbstractFlush E org.hibernate.event.def.AbstractFlushingEventListener  Could not synchronize database state with session
> [11/29/06 16:33:37:843 SGT] 197d6476 AbstractFlush E org.hibernate.event.def.AbstractFlushingEventListener  TRAS0014I: The following exception was logged org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update
> 	at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:71)
> 	at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
> 	at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:249)
> 	at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:235)
> 	at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:139)
> 	at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:297)
> 	at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:27)
> 	at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:993)
> 	at com.bnp.cbir.manager.CBIRImpTnxManager.saveSkipItems(CBIRImpTnxManager.java:93)
> 	at com.bnp.cbir.actions.SkipSubmitAction.execute(SkipSubmitAction.java:79)
> 	at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
> 	at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
> 	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
> 	at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 	at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
> 	at com.ibm.ws.webcontainer.servlet.ServicingServletState.service(StrictLifecycleServlet.java:333)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
> 	at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
> 	at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
> 	at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
> 	at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
> 	at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
> 	at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
> 	at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:443)
> 	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)
> Caused by: java.sql.BatchUpdateException: ORA-00001: unique constraint (OPS$CBIR.CBIR_IMP_PK) violated
> 	at oracle.jdbc.dbaccess.DBError.throwBatchUpdateException(DBError.java:431)
> 	at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:3049)
> 	at com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.executeBatch(WSJdbcStatement.java:352)
> 	at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:58)
> 	at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:242)
> 	... 32 more
> .
>                                  org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update
> 	at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:71)
> 	at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
> 	at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:249)
> 	at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:235)
> 	at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:139)
> 	at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:297)
> 	at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:27)
> 	at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:993)
> 	at com.bnp.cbir.manager.CBIRImpTnxManager.saveSkipItems(CBIRImpTnxManager.java:93)
> 	at com.bnp.cbir.actions.SkipSubmitAction.execute(SkipSubmitAction.java:79)
> 	at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
> 	at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
> 	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
> 	at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 	at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
> 	at com.ibm.ws.webcontainer.servlet.ServicingServletState.service(StrictLifecycleServlet.java:333)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
> 	at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
> 	at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
> 	at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
> 	at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
> 	at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
> 	at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
> 	at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:443)
> 	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)
> Caused by: java.sql.BatchUpdateException: ORA-00001: unique constraint (OPS$CBIR.CBIR_IMP_PK) violated
> 	at oracle.jdbc.dbaccess.DBError.throwBatchUpdateException(DBError.java:431)
> 	at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:3049)
> 	at com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.executeBatch(WSJdbcStatement.java:352)
> 	at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:58)
> 	at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:242)
> 	... 32 more
> [11/29/06 16:33:37:843 SGT] 2c0ba470 AbstractFlush E org.hibernate.event.def.AbstractFlushingEventListener  TRAS0014I: The following exception was logged org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update
> 	at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:71)
> 	at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
> 	at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:249)
> 	at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:235)
> 	at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:139)
> 	at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:297)
> 	at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:27)
> 	at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:993)
> 	at com.bnp.cbir.manager.CBIRImpTnxManager.saveSkipItems(CBIRImpTnxManager.java:93)
> 	at com.bnp.cbir.actions.SkipSubmitAction.execute(SkipSubmitAction.java:79)
> 	at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
> 	at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
> 	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
> 	at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 	at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
> 	at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
> 	at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
> 	at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
> 	at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
> 	at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
> 	at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
> 	at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
> 	at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:443)
> 	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)
> Caused by: java.sql.BatchUpdateException: ORA-00001: unique constraint (OPS$CBIR.CBIR_IMP_PK) violated
> 	at oracle.jdbc.dbaccess.DBError.throwBatchUpdateException(DBError.java:431)
> 	at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:3049)
> 	at com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.executeBatch(WSJdbcStatement.java:352)
> 	at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:58)
> 	at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:242)
> 	... 32 more
> .
>                                  org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update
> 	at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:71)
> 	at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
> 	at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:249)
> 	at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:235)
> 	at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:139)
> 	at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:297)
> 	at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:27)
> 	at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:993)
> 	at com.bnp.cbir.manager.CBIRImpTnxManager.saveSkipItems(CBIRImpTnxManager.java:93)
> 	at com.bnp.cbir.actions.SkipSubmitAction.execute(SkipSubmitAction.java:79)
> 	at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
> 	at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
> 	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
> 	at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 	at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
> 	at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
> 	at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
> 	at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
> 	at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
> 	at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
> 	at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
> 	at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
> 	at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:443)
> 	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)
> Caused by: java.sql.BatchUpdateException: ORA-00001: unique constraint (OPS$CBIR.CBIR_IMP_PK) violated
> 	at oracle.jdbc.dbaccess.DBError.throwBatchUpdateException(DBError.java:431)
> 	at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:3049)
> 	at com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.executeBatch(WSJdbcStatement.java:352)
> 	at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:58)
> 	at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:242)
> 	... 32 more
> [11/29/06 16:33:38:374 SGT] 197d6476 WebGroup      E SRVE0026E: [Servlet Error]-[action]: java.lang.NullPointerException
> 	at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:441)
> 	at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
> 	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
> 	at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 	at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
> 	at com.ibm.ws.webcontainer.servlet.ServicingServletState.service(StrictLifecycleServlet.java:333)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
> 	at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
> 	at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
> 	at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
> 	at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
> 	at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
> 	at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
> 	at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:443)
> 	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)
> [11/29/06 16:33:38:405 SGT] 2c0ba470 WebGroup      E SRVE0026E: [Servlet Error]-[action]: java.lang.NullPointerException
> 	at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:441)
> 	at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
> 	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
> 	at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 	at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
> 	at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
> 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
> 	at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
> 	at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
> 	at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
> 	at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
> 	at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
> 	at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
> 	at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
> 	at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
> 	at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
> 	at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:443)
> 	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira




More information about the hibernate-issues mailing list