- 
        1. Re: JBPM Identity Component - QuerySyntaxException: JBPM_ID_ikkida Sep 4, 2006 9:12 AM (in response to varada)I am too facing the similar problem. 
 i followed the exact ways discussed in one of the threads in our jboss forum but none worked:
 I tried adding the location of the jbpm-identity-3.1.2.jar file in persistence.xml:
 <jta-data-source>java:/UMKDS</jta-data-source>
 <jar-file>../jbpm-identity-3.1.2.jar</jar-file>
 &
 i even tried adding the class name directly
 <jta-data-source>java:/UMKDS</jta-data-source>
 org.jbpm.identity.User
 Bith ways failed to solve the issue.
 Can anybody throw some light on this.
 Thanks,
 Ikram
- 
        2. Re: JBPM Identity Component - QuerySyntaxException: JBPM_ID_hannes Sep 4, 2006 9:37 AM (in response to varada)Do u execute a SQL or a HQL query? 
 session.createQuery("select u.name from org.jbpm.identity.User as u")
 or
 session.createSQLQuery("select NAME_ from JBPM_ID_USER")
 ?
 (untested)
- 
        3. Re: JBPM Identity Component - QuerySyntaxException: JBPM_ID_ikkida Sep 4, 2006 9:46 AM (in response to varada)I'm using em.createQuery 
- 
        4. Re: JBPM Identity Component - QuerySyntaxException: JBPM_ID_varada Sep 4, 2006 12:41 PM (in response to varada)Thanks for responding. 
 If I do
 Query jbpmquery = em.createQuery("select u.name from org.jbpm.identity.User as u where u.name:= username");
 jbpmquery.setParameter("name", username);
 User found = (User)jbpmquery.getSingleResult();
 I get the following error.
 22:06:29,231 WARN [QuerySplitter] no persistent classes found for query class:
 select u.name from org.jbpm.identity.User as u where u.name:= username
 22:06:29,231 ERROR [STDERR] javax.persistence.PersistenceException: org.hibernat
 e.HibernateException: could not locate named parameter [name]
 22:06:29,231 ERROR [STDERR] at org.hibernate.ejb.AbstractEntityManagerImpl.t
 hrowPersistenceException(AbstractEntityManagerImpl.java:567)
 22:06:29,231 ERROR [STDERR] at org.hibernate.ejb.QueryImpl.setParameter(Quer
 yImpl.java:149)
 Some how the identity classes are not loaded..
 Any suggesstions??
 
     
    