Roshan Pradeep wrote:
java.lang.IllegalStateException: No EJB receiver available for handling [appName:Hibernate-1.0-SNAPSHOT,modulename:,distinctname:] combination
My lookup string is "ejb:Hibernate-1.0-SNAPSHOT//JadDataSessionBean!com.whispir.hibernate.test.JadDataRemote"
Your lookup string is incorrect.
Notice carefully the log message which explains what each part of that string is. Your lookup string should be:
ejb:/Hibernate-1.0-SNAPSHOT//JadDataSessionBean!com.whispir.hibernate.test.JadDataRemote
appname = "" (empty since it's not an .ear)
modulename = Hibernate-1.0-SNAPSHOT
distinct name = "" (no specific distinct name)