[JBoss-user] [EJB/JBoss] - Re: I am getting crazy. Please help me.

2004-07-24 Thread jtpsoft
I resolved this issue. Thanks for your input.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3843186#3843186

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3843186


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: I am getting crazy. Please help me.

2004-07-24 Thread jtpsoft
I am using value objects as a connection between entity beans and stateless session 
beans on one side and web appl on the other side. The value objects are not packed 
with entity beans but in separate common jar file. Is it correct? Am I supposed to 
pack (jar) value objects together with entity beans in the same jar file? Could that 
be the source of the my problems

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3843172#3843172

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3843172


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: I am getting crazy. Please help me.

2004-07-24 Thread kabkhan
Do the deployment descriptors get generated and included properly in your jar?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3843167#3843167

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3843167


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: I am getting crazy. Please help me.

2004-07-24 Thread jtpsoft
Alexey,

All my queries are in quotes as you can see. Can you help me to pinpoint the place of 
the error? I have been stuck for 3 days.

Vlad

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3843160#3843160

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3843160


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: I am getting crazy. Please help me.

2004-07-23 Thread loubyansky
It says
Error compiling EJB-QL statement ''; - nested throwable: 
(org.jboss.ejb.plugins.cmp.ejbql.ParseException: FROM not found

Your query is supposed to be in quotes...

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3843139#3843139

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3843139


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: I am getting crazy. Please help me.

2004-07-23 Thread jtpsoft
Oops! I forgot to paste my selects:

 * @ejb.finder
 *   signature = "com.vd.sms.entities.UserLocal findByEmailAddress(java.lang.String 
n0)"
 *   query = "SELECT OBJECT(t) FROM UserEJB AS t WHERE t.emailAddress = ?1"
 *   result-type-mapping = "Local"
 *   method-intf = "LocalHome"
 *
 * @ejb.finder
 *   signature = "com.vd.sms.entities.UserLocal findByPrimaryKey(java.lang.Long l0)"
 *   query = "SELECT OBJECT(r) FROM UserEJB AS r WHERE r.proId = ?1"
 *   result-type-mapping = "Local"
 *   method-intf = "LocalHome"
 *
 * @ejb.finder
 *   signature = "com.vd.sms.entities.UserLocal 
findByUsernameAndPassword(java.lang.String n0, java.lang.String n1, java.lang.String 
n3)"
 *   query = "SELECT OBJECT(n) FROM UserEJB AS n WHERE n.username = ?1 and n.password 
= ?2 AND n.profileStatus <> ?3"
 *   result-type-mapping = "Local"
 *   method-intf = "LocalHome"
 *
 * @ejb.finder
 *   signature = "com.vd.sms.entities.UserLocal 
findByUsernameAndEmailAddress(java.lang.String n0, java.lang.String n1, 
java.lang.String n3)"
 *   query = "SELECT OBJECT(m) FROM UserEJB AS m WHERE m.username = ?1 AND 
m.emailAddress = ?2 AND m.profileStatus <> ?3"
 *   result-type-mapping = "Local"
 *   method-intf = "LocalHome"
 *

How can I identify where the error is and why. The selects look correct.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3843121#3843121

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3843121


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user