[jBPM] New message: "jbpm 4.3 : Reentering a task that contains a reminder throws exception"
by R An
User development,
A new message was posted in the thread "jbpm 4.3 : Reentering a task that contains a reminder throws exception":
http://community.jboss.org/message/520496#520496
Author : R An
Profile : http://community.jboss.org/people/desidude123
Message:
--------------------------------------------------------------
For example : in the process below, initial entry into proc1 works, transition to "checkpoint" works - but when the "checkpoint" decision transitions back to proc1, hibernate "Duplicate" exception is thrown.
Removing the reminder element from proc1 - everything works fine.
<?xml version="1.0" encoding="UTF-8"?>
<process name="testfork" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,96,48,48">
<transition to="fork" name=""/>
</start>
<fork name="fork">
<transition to="proc1" />
<transition to="proc2" />
</fork>
<task name="proc1" notify="yes" priority="high" assignee="#{var.owner}" duedate="#{var.durationfromduedate}">
<reminder duedate="2 business days" repeat="4 business hours" />
<timer duedate="#{var.durationfromduedate}" transition="Escalate" />
<transition to="checkpoint" name="tcheckpoint" />
</task>
<task name="proc2" notify="yes" priority="high" assignee="#{var.owner}">
</task>
<decision name="checkpoint" expr="#{var.status}" >
*<transition name="morework" to="proc1" />*
<transition name="alldone" to="done" />
<transition name="moredelegatedwork" to="waitfordelegates" />
</decision>
<state g="96,94,111,52" name="waitfordelegates">
<transition g="151,60:-36,11" to="checkpoint"/>
</state>
<end g="238,37,48,48" name="Escalate"/>
<end g="238,37,48,48" name="done"/>
<end g="238,98,48,48" name="bad request"/>
<end g="240,160,48,48" name="internal server error"/>
</process>
### EXCEPTION ###########################################
11:33:30,412 SEV | [AbstractFlushingEventListener] Could not synchronize database state with session
org.hibernate.exception.ConstraintViolationException: could not update: [org.jbpm.pvm.internal.model.ExecutionImpl#1300026]
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:94)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2453)
at org.hibernate.persister.entity.AbstractEntityPersister.updateOrInsert(AbstractEntityPersister.java:2335)
at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2635)
at org.hibernate.action.EntityUpdateAction.execute(EntityUpdateAction.java:115)
at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:263)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:168)
at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:50)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1027)
at org.jbpm.pvm.internal.tx.HibernateSessionResource.prepare(HibernateSessionResource.java:56)
at org.jbpm.pvm.internal.tx.StandardTransaction.commit(StandardTransaction.java:107)
at org.jbpm.pvm.internal.tx.StandardTransaction.complete(StandardTransaction.java:64)
at org.jbpm.pvm.internal.tx.StandardTransactionInterceptor.execute(StandardTransactionInterceptor.java:61)
at org.jbpm.pvm.internal.svc.EnvironmentInterceptor.executeInNewEnvironment(EnvironmentInterceptor.java:53)
at org.jbpm.pvm.internal.svc.EnvironmentInterceptor.execute(EnvironmentInterceptor.java:40)
at org.jbpm.pvm.internal.svc.RetryInterceptor.execute(RetryInterceptor.java:55)
at org.jbpm.pvm.internal.svc.SkipInterceptor.execute(SkipInterceptor.java:43)
at org.jbpm.pvm.internal.svc.TaskServiceImpl.completeTask(TaskServiceImpl.java:96)
at Workflow.completeTask(Workflow.java:116)
at test.main(test.java:95)
Caused by: com.mysql.jdbc.exceptions.MySQLIntegrityConstraintViolationException: Duplicate entry 'testfork.x1.1300016.proc1' for key 2
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:931)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2985)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1631)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1723)
at com.mysql.jdbc.Connection.execSQL(Connection.java:3283)
at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1332)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1604)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1519)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1504)
at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2435)
... 20 more
### EXCEPTION ###########################################
11:33:30,416 FST | [StandardTransaction] resource threw exception in prepare. rolling back.
11:33:30,416 FST | [StandardTransaction] rolling back resource org.jbpm.pvm.internal.tx.HibernateSessionResource@158412e1
11:33:30,420 FIN | [HibernateSessionResource] ----- rolling back hibernate tx 2113471711 -----------------------------------------------------
11:33:30,425 FST | [HibernateSessionResource] closing hibernate session 1459678656
11:33:30,425 FST | [StandardTransaction] rolled back
11:33:30,425 FST | [WireContext] closing transaction...
11:33:30,425 FST | [BasicEnvironment] closing PvmEnvironment[1993263240]
11:33:30,426 FST | [PvmEnvironment] closed PvmEnvironment[1993263240]
test:ex=org.hibernate.exception.ConstraintViolationException: could not update: [org.jbpm.pvm.internal.model.ExecutionImpl#1300026]
org.hibernate.exception.ConstraintViolationException: could not update: [org.jbpm.pvm.internal.model.ExecutionImpl#1300026]
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:94)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2453)
at org.hibernate.persister.entity.AbstractEntityPersister.updateOrInsert(AbstractEntityPersister.java:2335)
at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2635)
at org.hibernate.action.EntityUpdateAction.execute(EntityUpdateAction.java:115)
at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:263)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:168)
at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:50)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1027)
at org.jbpm.pvm.internal.tx.HibernateSessionResource.prepare(HibernateSessionResource.java:56)
at org.jbpm.pvm.internal.tx.StandardTransaction.commit(StandardTransaction.java:107)
at org.jbpm.pvm.internal.tx.StandardTransaction.complete(StandardTransaction.java:64)
at org.jbpm.pvm.internal.tx.StandardTransactionInterceptor.execute(StandardTransactionInterceptor.java:61)
at org.jbpm.pvm.internal.svc.EnvironmentInterceptor.executeInNewEnvironment(EnvironmentInterceptor.java:53)
at org.jbpm.pvm.internal.svc.EnvironmentInterceptor.execute(EnvironmentInterceptor.java:40)
at org.jbpm.pvm.internal.svc.RetryInterceptor.execute(RetryInterceptor.java:55)
at org.jbpm.pvm.internal.svc.SkipInterceptor.execute(SkipInterceptor.java:43)
at org.jbpm.pvm.internal.svc.TaskServiceImpl.completeTask(TaskServiceImpl.java:96)
at Workflow.completeTask(Workflow.java:116)
at test.main(test.java:95)
Caused by: com.mysql.jdbc.exceptions.MySQLIntegrityConstraintViolationException: Duplicate entry 'testfork.x1.1300016.proc1' for key 2
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:931)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2985)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1631)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1723)
at com.mysql.jdbc.Connection.execSQL(Connection.java:3283)
at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1332)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1604)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1519)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1504)
at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2435)
... 20 more
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520496#520496
16 years, 5 months
[jBPM] New message: "how Jboss jbpm compatible with jbi?"
by Felix Anthony
User development,
A new message was posted in the thread "how Jboss jbpm compatible with jbi?":
http://community.jboss.org/message/520492#520492
Author : Felix Anthony
Profile : http://community.jboss.org/people/dilfel
Message:
--------------------------------------------------------------
Hi,
I'm new to jboss BPEL .
i'm using netbeans IDE for BPEL application development. Netbeans BPEL plugin compatible with JBI framework. So we can easily create BPEL application using graphical oriented programming. Finally we can create BPEL build application using JBI module. So my question is jboss server have services for bpel and jbi?
Please help me know how to do ? and where can i get the resources for jboss supported BPEL and JBI? and how to include those services(BPEL ans JBI) as in jboss server directory? and which Jboss server have support for BPEL and JBI?
Please help me as soon as possible.
Regards,
Antony F
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520492#520492
16 years, 5 months
[jBPM] New message: "Re: How to install jBPM4.2 to Websphere 7"
by henry donnell
User development,
A new message was posted in the thread "How to install jBPM4.2 to Websphere 7":
http://community.jboss.org/message/520479#520479
Author : henry donnell
Profile : http://community.jboss.org/people/bestage
Message:
--------------------------------------------------------------
You shouldn't wonder no one has responded to your question yet.
Firstly if you expect to modify slightly the ant script and - jbpm4.2 will be installed easily on WAS 7 - that is not so easily and quickly done.
As it is, jbpm is not really dependant on any app server. You can use it as a library in your project deployed on almost any app server.
What you probably want is to install the jbpm console.
Well this is not possible by modifying just the ant script, at least not possible without some modifications in the project and probably having to rebuild from source.
There is neither a tutorial for this nor is this supported by the jBPM team.
I have seen the console running on WAS6.1, but as I said the guy who managed to install it had to modify the projects and build from source.
Since that was for his company, he will not be able to provide any tutorials here. You have to try it yourself.
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520479#520479
16 years, 5 months
[Performance Tuning] New message: "ajp thread spikes in newly ported application"
by Jeff Christy
User development,
A new message was posted in the thread "ajp thread spikes in newly ported application":
http://community.jboss.org/message/520450#520450
Author : Jeff Christy
Profile : http://community.jboss.org/people/jwchristy
Message:
--------------------------------------------------------------
We recently (last December) migrated a large j2ee application from weblogic to jboss. Additionally, there is an apache webserver in front of the jboss as, with requests being directed on from apache to jboss via ajp. Now, mostly every day, we experience a situation where the number of ajp threads in use spikes up and the users report a major degradation in performance. These spikes typically last about 30 minutes, and then resolve themselves withough intervention. We have been unable to associate this spiking behavior with anything happening in the application, and I'm curious if anyone else has a similar configuration and has seen a similar problem. I'm attaching a couple of images of graphs of the spikey behavior, along with a thread dump taken while the problem is happening and a summary of the thread states (runnable vs. Object.wait). Any thoughts about this are most welcome.
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520450#520450
16 years, 5 months
[EJB 3.0] New message: "ERROR [JDBCExceptionReporter] Incorrect syntax near '-'."
by Azael Espinosa
User development,
A new message was posted in the thread "ERROR [JDBCExceptionReporter] Incorrect syntax near '-'.":
http://community.jboss.org/message/520448#520448
Author : Azael Espinosa
Profile : http://community.jboss.org/people/azaelespino
Message:
--------------------------------------------------------------
Environment: SQL server 2005, maven2, jboss-5.1.0.GA, jboss-seam-2.2.0.GA, seam gen reverse engineer,Ant 1.6
The project was created by seam-gen EAR format
I have a Porject created with seam-gen and when my project run in jboss throws me errors, I was told that must be implemented search-hibernate-3.1.1.GA, but not how to do it or copy files and try copying the jars in the libraries but follows the same mistake.
I'm doing something wrong?
I think it's a bug, but do not know how to fix it.
I hope I can help
regards,
*11:25:54,610 WARN [JDBCExceptionReporter] SQL Error: 102, SQLState: S0001
11:25:54,610 ERROR [JDBCExceptionReporter] Incorrect syntax near '-'.*
11:25:54,641 SEVERE [viewhandler] Error Rendering View[/EmpleadoList.xhtml]
javax.el.ELException: /EmpleadoList.xhtml: Error reading 'resultList' on type co
m.baf.action.EmpleadoList_$$_javassist_seam_3
at com.sun.facelets.compiler.TextInstruction.write(TextInstruction.java:
48)
at com.sun.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.j
ava:39)
at org.ajax4jsf.renderkit.RendererBase.renderChild(RendererBase.java:275
)
at org.richfaces.renderkit.html.PanelRenderer.doEncodeBegin(PanelRendere
r.java:189)
at org.richfaces.renderkit.html.PanelRenderer.doEncodeBegin(PanelRendere
r.java:148)
at org.ajax4jsf.renderkit.RendererBase.encodeBegin(RendererBase.java:100
)
at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.jav
a:813)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:928)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.jav
a:592)
at org.ajax4jsf.application.ViewHandlerWrapper.renderView(ViewHandlerWra
pper.java:100)
at org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.j
ava:176)
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePha
se.java:110)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:206)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:83)
at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:178)
at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:290)
at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFil
ter.java:368)
at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:495)
at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:56)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.web.HotDeployFilter.doFilter(HotDeployFilter.java:53)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
lter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
alve.java:235)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
alve.java:191)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
yAssociationValve.java:190)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authentica
torBase.java:433)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
e.java:92)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.proce
ss(SecurityContextEstablishmentValve.java:126)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invok
e(SecurityContextEstablishmentValve.java:70)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
ava:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
ava:102)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedC
onnectionValve.java:158)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
ve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
a:330)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
:829)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
ss(Http11Protocol.java:598)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:44
7)
at java.lang.Thread.run(Unknown Source)
Caused by: javax.persistence.PersistenceException: org.hibernate.exception.SQLGr
ammarException: could not execute query
at org.hibernate.ejb.AbstractEntityManagerImpl.throwPersistenceException
(AbstractEntityManagerImpl.java:614)
at org.hibernate.ejb.QueryImpl.getResultList(QueryImpl.java:76)
at org.jboss.seam.framework.EntityQuery.initResultList(EntityQuery.java:
80)
at org.jboss.seam.framework.EntityQuery.getResultList(EntityQuery.java:7
1)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.jboss.seam.util.Reflections.invoke(Reflections.java:22)
at org.jboss.seam.intercept.RootInvocationContext.proceed(RootInvocation
Context.java:32)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
Context.java:56)
at org.jboss.seam.transaction.RollbackInterceptor.aroundInvoke(RollbackI
nterceptor.java:28)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
Context.java:68)
at org.jboss.seam.transaction.TransactionInterceptor$1.work(TransactionI
nterceptor.java:97)
at org.jboss.seam.util.Work.workInTransaction(Work.java:47)
at org.jboss.seam.transaction.TransactionInterceptor.aroundInvoke(Transa
ctionInterceptor.java:91)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
Context.java:68)
at org.jboss.seam.core.MethodContextInterceptor.aroundInvoke(MethodConte
xtInterceptor.java:44)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
Context.java:68)
at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:
107)
at org.jboss.seam.intercept.JavaBeanInterceptor.interceptInvocation(Java
BeanInterceptor.java:185)
at org.jboss.seam.intercept.JavaBeanInterceptor.invoke(JavaBeanIntercept
or.java:103)
at com.baf.action.EmpleadoList_$$_javassist_seam_3.getResultList(Emplead
oList_$$_javassist_seam_3.java)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at javax.el.BeanELResolver.getValue(BeanELResolver.java:62)
at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:54)
at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELRe
solver.java:72)
at org.jboss.el.parser.AstPropertySuffix.getValue(AstPropertySuffix.java
:53)
at org.jboss.el.parser.AstValue.getValue(AstValue.java:67)
at org.jboss.el.parser.AstEmpty.getValue(AstEmpty.java:29)
at org.jboss.el.parser.AstChoice.getValue(AstChoice.java:27)
at org.jboss.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:18
6)
at com.sun.facelets.el.ELText$ELTextVariable.writeText(ELText.java:184)
at com.sun.facelets.el.ELText$ELTextComposite.writeText(ELText.java:108)
at com.sun.facelets.compiler.TextInstruction.write(TextInstruction.java:
45)
... 58 more
Caused by: org.hibernate.exception.SQLGrammarException: could not execute query
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.j
ava:90)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelp
er.java:66)
at org.hibernate.loader.Loader.doList(Loader.java:2231)
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2125)
at org.hibernate.loader.Loader.list(Loader.java:2120)
at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:401)
at org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.ja
va:361)
at org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java
:196)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1148)
at org.hibernate.impl.QueryImpl.list(QueryImpl.java:102)
at org.hibernate.ejb.QueryImpl.getResultList(QueryImpl.java:67)
... 94 more
Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax nea
r '-'.
at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError
(Unknown Source)
at com.microsoft.sqlserver.jdbc.IOBuffer.processPackets(Unknown Source)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.sendExecute(Unknown S
ource)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecuteQuery(Unknow
n Source)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.executeQuery(
Unknown Source)
at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeQuery
(WrappedPreparedStatement.java:342)
at org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:
208)
at org.hibernate.loader.Loader.getResultSet(Loader.java:1808)
at org.hibernate.loader.Loader.doQuery(Loader.java:697)
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Lo
ader.java:259)
at org.hibernate.loader.Loader.doList(Loader.java:2228)
... 102 more
11:25:54,797 WARN [JDBCExceptionReporter] SQL Error: 0, SQLState: null
11:25:54,797 ERROR [JDBCExceptionReporter] Transaction is not active: tx=Transac
tionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e status: ActionStatus.ABOR
T_ONLY >; - nested throwable: (javax.resource.ResourceException: Transaction is
not active: tx=TransactionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e sta
tus: ActionStatus.ABORT_ONLY >)
11:25:54,797 WARN [JDBCExceptionReporter] SQL Error: 0, SQLState: null
11:25:54,797 ERROR [JDBCExceptionReporter] Transaction is not active: tx=Transac
tionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e status: ActionStatus.ABOR
T_ONLY >; - nested throwable: (javax.resource.ResourceException: Transaction is
not active: tx=TransactionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e sta
tus: ActionStatus.ABORT_ONLY >)
11:25:54,813 WARN [JDBCExceptionReporter] SQL Error: 0, SQLState: null
11:25:54,813 ERROR [JDBCExceptionReporter] Transaction is not active: tx=Transac
tionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e status: ActionStatus.ABOR
T_ONLY >; - nested throwable: (javax.resource.ResourceException: Transaction is
not active: tx=TransactionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e sta
tus: ActionStatus.ABORT_ONLY >)
11:25:54,813 WARN [JDBCExceptionReporter] SQL Error: 0, SQLState: null
11:25:54,813 ERROR [JDBCExceptionReporter] Transaction is not active: tx=Transac
tionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e status: ActionStatus.ABOR
T_ONLY >; - nested throwable: (javax.resource.ResourceException: Transaction is
not active: tx=TransactionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e sta
tus: ActionStatus.ABORT_ONLY >)
11:25:54,860 WARN [JDBCExceptionReporter] SQL Error: 0, SQLState: null
11:25:54,860 ERROR [JDBCExceptionReporter] Transaction is not active: tx=Transac
tionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e status: ActionStatus.ABOR
T_ONLY >; - nested throwable: (javax.resource.ResourceException: Transaction is
not active: tx=TransactionImple < ac, BasicAction: -53eef31e:fb0:4b50a295:7e sta
tus: ActionStatus.ABORT_ONLY >)
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520448#520448
16 years, 5 months