From users-return-2479-apmail-openejb-users-archive=openejb.apache.org@openejb.apache.org Tue Sep 08 22:48:58 2009 Return-Path: Delivered-To: apmail-openejb-users-archive@www.apache.org Received: (qmail 56311 invoked from network); 8 Sep 2009 22:48:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Sep 2009 22:48:58 -0000 Received: (qmail 52407 invoked by uid 500); 8 Sep 2009 22:48:58 -0000 Delivered-To: apmail-openejb-users-archive@openejb.apache.org Received: (qmail 52375 invoked by uid 500); 8 Sep 2009 22:48:58 -0000 Mailing-List: contact users-help@openejb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@openejb.apache.org Delivered-To: mailing list users@openejb.apache.org Received: (qmail 52363 invoked by uid 99); 8 Sep 2009 22:48:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Sep 2009 22:48:56 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Sep 2009 22:48:48 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1Ml9UB-0008J7-G3 for users@openejb.apache.org; Tue, 08 Sep 2009 15:48:27 -0700 Message-ID: <25355519.post@talk.nabble.com> Date: Tue, 8 Sep 2009 15:48:27 -0700 (PDT) From: sL07 To: users@openejb.apache.org Subject: Re: EJB classpath problem in eclipse3.5 In-Reply-To: <1f3854d50909080422t15aba10ck1d4d8a87379afd56@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Nabble-From: lucio@asteriski.com References: <25343341.post@talk.nabble.com> <1f3854d50909080422t15aba10ck1d4d8a87379afd56@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org Quintin Beukes-2 wrote: >=20 > Can you please send your InitialContext configuration in the JUnit > test case, as well as the output you receive when running the test > case. With this I mean the Stdout+Stderr, not the filtered output IDEs > usually provide. If I'm not mistaken, you will find this in Eclipse's > "Console" view. >=20 >=20 hey thanks for response. i really appreciate your help. i have attached both the initial context and the full trace from eclipse console below. Properties p =3D new Properties(); =09 =09=09=09p.put(Context.INITIAL_CONTEXT_FACTORY,=20 =09 "org.apache.openejb.client.LocalInitialContextFactory"); =09=09=09 =09=09=09//classpath issuw for @localclient =09=09=09p.put("openejb.tempclassloader.skip", "annotations"); =09=09=09 =09=09=09 =09=09=09p.put("log4j.category.org.hibernate.SQL", "debug"); =09=09=09p.put("log4j.category.org.hibernate", "debug"); =09=09=09p.put("log4j.category.OpenEJB.options", "debug"); =09=09=09p.put("log4j.category.openjpa", "debug"); =09=09=09p.put("log4j.category.com.asteriski", "debug"); =09=09=09 =09 =09 =09 =20 =09=09 p.put("itpDS", "new://Resource?type=3DDataSource"); =09 p.put("itpDS.JdbcDriver", "org.hsqldb.jdbcDriver"); =09 p.put("itpDS.JdbcUrl", "jdbc:hsqldb:mem:itpflowdb"); =09 p.put("itpNoTxDS", "new://Resource?type=3DDataSource"); =09 p.put("itpNoTxDS.JdbcDriver", "org.hsqldb.jdbcDriver"); =09 p.put("itpNoTxDS.JdbcUrl", "jdbc:hsqldb:mem:itpflowdb"); =09 p.put("itpNoTxDS.JtaManaged", "false"); =09 =20 =09 =20 =09=09 ctx =3D new InitialContext( p ); =09=09 =20 =09=09 // Here's the fun part =09 ctx.bind("inject", this); i noticed that the EJB directory is referenced in the java.library.path (C:\src\seamitp\classes\hot;C:\src\seamitp\classes\main;) is this a problem= ? It doesnt find the EJBModule in the C:\src\seamitp\classes\hot;C:\src\seamitp\classes\main, despite setting the ejb-jar.xml to < console trace> DEBUG - Using default 'openejb.nobanner=3Dtrue' Apache OpenEJB 3.1.1 build: 20090530-06:18 http://openejb.apache.org/ INFO - openejb.home =3D C:\src\seamitp\test INFO - openejb.base =3D C:\src\seamitp\test DEBUG - Using default 'openejb.assembler=3Dorg.apache.openejb.assembler.classic.Assembler' DEBUG - Using default 'openejb.jndiname.failoncollision=3Dtrue' DEBUG - Using default 'openejb.configurator=3Dorg.apache.openejb.config.ConfigurationFactory' DEBUG - Using default 'openejb.validation.skip=3Dfalse' DEBUG - Using default 'openejb.deploymentId.format=3D{ejbName}' DEBUG - Using default 'openejb.debuggable-vm-hackery=3Dfalse' DEBUG - Using default 'openejb.webservices.enabled=3Dtrue' DEBUG - Using default 'openejb.vendor.config=3Dgeronimo, glassfish, jboss, weblogic' Possible values are: geronimo, glassfish, jboss, weblogic DEBUG - Using default 'openejb.provider.default=3Dorg.apache.openejb.embedd= ed' INFO - Configuring Service(id=3DDefault Security Service, type=3DSecurityService, provider-id=3DDefault Security Service) INFO - Configuring Service(id=3DDefault Transaction Manager, type=3DTransactionManager, provider-id=3DDefault Transaction Manager) INFO - Configuring Service(id=3DitpDS, type=3DResource, provider-id=3DDefau= lt JDBC Database) INFO - Configuring Service(id=3DitpNoTxDS, type=3DResource, provider-id=3DD= efault JDBC Database) DEBUG - Using default 'openejb.deployments.classpath=3Dtrue' DEBUG - Using default 'openejb.deployments.classpath.include=3D' DEBUG - Using default 'openejb.deployments.classpath.exclude=3D.*' DEBUG - Using default 'openejb.deployments.classpath.require.descriptor=3Dfalse' DEBUG - Using default 'openejb.deployments.classpath.filter.descriptors=3Dfalse' DEBUG - Using default 'openejb.deployments.classpath.filter.systemapps=3Dtr= ue' INFO - Found EjbModule in classpath: C:\src\seamitp\test\bin INFO - Found ClientModule in classpath: C:\java\openejb-3.1.1\lib\xml-resolver-1.2.jar INFO - Found ClientModule in classpath: C:\java\javassist\javassist.jar DEBUG - Using default 'openejb.deployments.classpath.ear=3Dtrue' INFO - Beginning load: C:\src\seamitp\test\bin INFO - Beginning load: C:\java\openejb-3.1.1\lib\xml-resolver-1.2.jar INFO - Beginning load: C:\java\javassist\javassist.jar INFO - Configuring enterprise application: classpath.ear WARN - No application-client.xml found assuming annotations present: classpath.ear, module: xml-resolver-1.2.jar WARN - No application-client.xml found assuming annotations present: classpath.ear, module: javassist.jar INFO - Configuring PersistenceUnit(name=3Dseamitp, provider=3Dorg.hibernate.ejb.HibernatePersistence) DEBUG - Using default 'openejb.descriptors.output=3Dfalse' DEBUG - Using default 'openejb.descriptors.output=3Dfalse' DEBUG - Using default 'openejb.validation.output.level=3Dmedium'. Possible values are: terse, medium, verbose INFO - Enterprise application "classpath.ear" loaded. INFO - Assembling app: classpath.ear INFO - PersistenceUnit(name=3Dseamitp, provider=3Dorg.hibernate.ejb.HibernatePersistence) INFO - Hibernate Annotations 3.4.0.GA INFO - Hibernate 3.3.1.GA INFO - hibernate.properties not found INFO - Bytecode provider name : javassist INFO - using JDK 1.4 java.sql.Timestamp handling INFO - Hibernate Commons Annotations 3.1.0.GA INFO - Hibernate EntityManager 3.4.0.GA DEBUG - Processing PersistenceUnitInfo [ =09name: seamitp =09persistence provider classname: org.hibernate.ejb.HibernatePersistence =09classloader: java.net.URLClassLoader@adae91 =09Temporary classloader: org.apache.openejb.core.TempClassLoader@fdfc58 =09excludeUnlistedClasses: false =09JTA datasource: org.apache.openejb.resource.jdbc.BasicManagedDataSource@c22a3b =09Non JTA datasource: org.apache.openejb.resource.jdbc.BasicDataSource@1629e71 =09Transaction type: JTA =09PU root URL: file:/C:/src/seamitp/test/bin/ =09Jar files URLs [] =09Managed classes names [] =09Mapping files names [] =09Properties [ =09=09hibernate.transaction.manager_lookup_class: org.apache.openejb.hibernate.TransactionManagerLookup =09=09hibernate.dialect: org.hibernate.dialect.HSQLDialect =09=09hibernate.show_sql: true =09=09hibernate.hbm2ddl.auto: create-drop] DEBUG - Detect class: true; detect hbm: true DEBUG - Detect class: true; detect hbm: true DEBUG - Searching mapped entities in jar/par: file:/C:/src/seamitp/test/bin= / DEBUG - Filtering: com.asteriski.itpflow.business.ReferenceBusinessTest DEBUG - Filtering: com.asteriski.itpflow.EJB3TestCase DEBUG - Filtering: com.asteriski.itpflow.ITPItemBuilder DEBUG - Execute first pass mapping processing DEBUG - Process hbm files DEBUG - Process annotated classes DEBUG - processing fk mappings (*ToOne and JoinedSubclass) DEBUG - processing extends queue DEBUG - processing collection mappings DEBUG - processing native query and ResultSetMapping mappings DEBUG - processing association property references DEBUG - processing foreign key constraints INFO - Hibernate Validator not found: ignoring DEBUG - No JNDI name configured for binding Ejb3Configuration DEBUG - Validator not present in classpath, ignoring event listener registration DEBUG - Search not present in classpath, ignoring event listener registration. INFO - Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled. DEBUG - Preparing to build session factory with filters : {} DEBUG - Execute first pass mapping processing DEBUG - Process hbm files DEBUG - Process annotated classes DEBUG - processing fk mappings (*ToOne and JoinedSubclass) DEBUG - processing extends queue DEBUG - processing collection mappings DEBUG - processing native query and ResultSetMapping mappings DEBUG - processing association property references DEBUG - processing foreign key constraints INFO - Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider INFO - Using provided datasource INFO - RDBMS: HSQL Database Engine, version: 1.8.0 INFO - JDBC driver: HSQL Database Engine Driver, version: 1.8.0 INFO - Using dialect: org.hibernate.dialect.HSQLDialect INFO - Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory INFO - instantiating TransactionManagerLookup: org.apache.openejb.hibernate.TransactionManagerLookup INFO - instantiated TransactionManagerLookup INFO - Automatic flush during beforeCompletion(): disabled INFO - Automatic session close at end of transaction: disabled INFO - JDBC batch size: 15 INFO - JDBC batch updates for versioned data: disabled INFO - Scrollable result sets: enabled DEBUG - Wrap result sets: disabled INFO - JDBC3 getGeneratedKeys(): disabled INFO - Connection release mode: auto INFO - Default batch fetch size: 1 INFO - Generate SQL with comments: disabled INFO - Order SQL updates by primary key: disabled INFO - Order SQL inserts for batching: disabled INFO - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory INFO - Using ASTQueryTranslatorFactory INFO - Query language substitutions: {} INFO - JPA-QL strict compliance: enabled INFO - Second-level cache: enabled INFO - Query cache: disabled INFO - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory INFO - Optimize cache for minimal puts: disabled INFO - Structured second-level cache entries: disabled INFO - Echoing all SQL to stdout INFO - Statistics: disabled INFO - Deleted entity synthetic identifier rollback: disabled INFO - Default entity-mode: pojo INFO - Named query checking : enabled INFO - building session factory DEBUG - Session factory constructed with filter configurations : {} DEBUG - instantiating session factory with properties: {java.vendor=3DSun Microsystems Inc., sun.java.launcher=3DSUN_STANDARD, sun.management.compiler=3DHotSpot Client Compiler, org.apache.openejb.core.security.JaccProvider=3Dorg.apache.openejb.core.sec= urity.jacc.BasicJaccProvider, hibernate.ejb.discard_pc_on_close=3Dfalse, hibernate.transaction.flush_before_completion=3Dfalse, os.name=3DWindows Vi= sta, sun.boot.class.path=3DC:\Program Files\Java\jdk1.6.0_06\jre\lib\endorsed\jaxb-impl.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_06\jre\classes, javax.security.jacc.PolicyConfigurationFactory.provider=3Dorg.apache.openej= b.core.security.JaccProvider$Factory, sun.desktop=3Dwindows, java.vm.specification.vendor=3DSun Microsystems Inc.= , java.runtime.version=3D1.6.0_06-b02, hibernate.connection.autocommit=3Dtrue= , user.name=3Dlucio, derby.storage.fileSyncTransactionLog=3Dtrue, hibernate.connection.release_mode=3Dauto, user.language=3Den, derby.system.home=3DC:\src\seamitp\test, sun.boot.library.path=3DC:\Program Files\Java\jdk1.6.0_06\jre\bin, openjpa.Log=3Dlog4j, java.version=3D1.6.0_0= 6, user.timezone=3DAustralia/Brisbane, sun.arch.data.model=3D32, java.endorsed.dirs=3DC:\Program Files\Java\jdk1.6.0_06\jre\lib\endorsed, sun.cpu.isalist=3Dpentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86, sun.jnu.encoding=3DCp1252, file.encoding.pkg=3Dsun.io, file.separator= =3D\, java.specification.name=3DJava Platform API Specification, java.class.version=3D50.0, user.country=3DAU, java.home=3DC:\Program Files\Java\jdk1.6.0_06\jre, java.vm.info=3Dmixed mode, os.version=3D6.0, hibernate.transaction.factory_class=3Dorg.hibernate.ejb.transaction.Joinabl= eCMTTransactionFactory, hibernate.query.jpaql_strict_compliance=3Dtrue, path.separator=3D;, java.vm.version=3D10.0-b22, user.variant=3D, java.awt.printerjob=3Dsun.awt.windows.WPrinterJob, sun.io.unicode.encoding=3DUnicodeLittle, awt.toolkit=3Dsun.awt.windows.WToo= lkit, java.naming.factory.url.pkgs=3Dorg.apache.openejb.core.ivm.naming, user.home=3DC:\Users\lucio, openejb.version=3D3.1.1, java.specification.vendor=3DSun Microsystems Inc., hibernate.hbm2ddl.auto=3Dcreate-drop, java.library.path=3DC:\Program Files\Java\jdk1.6.0_06\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:= \Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\10.0\DLLShared\;c:\cygwin\bin;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\MySQL\MySQL Server 5.1\bin;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Subversion\bin, java.vendor.url=3Dhttp://java.sun.com/, java.vm.vendor=3DSun Microsystems Inc., hibernate.dialect=3Dorg.hibernate.dialect.HSQLDialect, java.runtime.name=3DJava(TM) SE Runtime Environment, java.class.path=3DC:\src\seamitp\test\bin;C:\java\openejb-3.1.1\lib\activei= o-core-3.0.0-incubator.jar;C:\java\openejb-3.1.1\lib\activemq-core-4.1.1.ja= r;C:\java\openejb-3.1.1\lib\activemq-ra-4.1.1.jar;C:\java\openejb-3.1.1\lib= \backport-util-concurrent-2.1.jar;C:\java\openejb-3.1.1\lib\bcprov-jdk15-14= 0.jar;C:\java\openejb-3.1.1\lib\commons-cli-1.1.jar;C:\java\openejb-3.1.1\l= ib\commons-collections-3.2.jar;C:\java\openejb-3.1.1\lib\commons-dbcp-all-1= .3-r699049.jar;C:\java\openejb-3.1.1\lib\commons-lang-2.1.jar;C:\java\opene= jb-3.1.1\lib\commons-logging-1.1.jar;C:\java\openejb-3.1.1\lib\commons-pool= -1.3.jar;C:\java\openejb-3.1.1\lib\cxf-bundle-2.0.9.jar;C:\java\openejb-3.1= .1\lib\ejb31-api-experimental-3.1.1.jar;C:\java\openejb-3.1.1\lib\geronimo-= connector-2.1.jar;C:\java\openejb-3.1.1\lib\geronimo-javamail_1.4_mail-1.2.= jar;C:\java\openejb-3.1.1\lib\geronimo-transaction-2.1.jar;C:\java\openejb-= 3.1.1\lib\howl-1.0.1-1.jar;C:\java\openejb-3.1.1\lib\hsqldb-1.8.0.7.jar;C:\= java\openejb-3.1.1\lib\javaee-api-5.0-2.jar;C:\java\openejb-3.1.1\lib\jaxb-= impl-2.0.5.jar;C:\java\openejb-3.1.1\lib\log4j-1.2.12.jar;C:\java\openejb-3= .1.1\lib\neethi-2.0.4.jar;C:\java\openejb-3.1.1\lib\openejb-api-3.1.1.jar;C= :\java\openejb-3.1.1\lib\openejb-client-3.1.1.jar;C:\java\openejb-3.1.1\lib= \openejb-core-3.1.1.jar;C:\java\openejb-3.1.1\lib\openejb-cxf-3.1.1.jar;C:\= java\openejb-3.1.1\lib\openejb-ejbd-3.1.1.jar;C:\java\openejb-3.1.1\lib\ope= nejb-hsql-3.1.1.jar;C:\java\openejb-3.1.1\lib\openejb-http-3.1.1.jar;C:\jav= a\openejb-3.1.1\lib\openejb-javaagent-3.1.1.jar;C:\java\openejb-3.1.1\lib\o= penejb-jee-3.1.1.jar;C:\java\openejb-3.1.1\lib\openejb-loader-3.1.1.jar;C:\= java\openejb-3.1.1\lib\openejb-multicast-3.1.1.jar;C:\java\openejb-3.1.1\li= b\openejb-server-3.1.1.jar;C:\java\openejb-3.1.1\lib\openejb-telnet-3.1.1.j= ar;C:\java\openejb-3.1.1\lib\openejb-webservices-3.1.1.jar;C:\java\openejb-= 3.1.1\lib\openjpa-1.2.0.jar;C:\java\openejb-3.1.1\lib\opensaml-1.1.jar;C:\j= ava\openejb-3.1.1\lib\quartz-1.5.2.jar;C:\java\openejb-3.1.1\lib\saaj-impl-= 1.3.jar;C:\java\openejb-3.1.1\lib\serp-1.13.1.jar;C:\java\openejb-3.1.1\lib= \stax-api-1.0.1.jar;C:\java\openejb-3.1.1\lib\swizzle-stream-1.0.1.jar;C:\j= ava\openejb-3.1.1\lib\wsdl4j-1.6.1.jar;C:\java\openejb-3.1.1\lib\wss4j-1.5.= 4.jar;C:\java\openejb-3.1.1\lib\wstx-asl-3.2.0.jar;C:\java\openejb-3.1.1\li= b\xbean-asm-shaded-3.6-r779512.jar;C:\java\openejb-3.1.1\lib\xbean-finder-s= haded-3.6-r779512.jar;C:\java\openejb-3.1.1\lib\xbean-naming-3.5.jar;C:\jav= a\openejb-3.1.1\lib\xbean-reflect-3.6-r779512.jar;C:\java\openejb-3.1.1\lib= \xml-resolver-1.2.jar;C:\java\openejb-3.1.1\lib\XmlSchema-1.4.2.jar;C:\java= \openejb-3.1.1\lib\xmlsec-1.4.0.jar;C:\downloads\junit\junit4.7\junit4.7\ju= nit-4.7.jar;C:\src\seamitp\lib\hibernate-annotations.jar;C:\src\seamitp\lib= \hibernate-commons-annotations.jar;C:\src\seamitp\lib\hibernate-core.jar;C:= \src\seamitp\lib\hibernate-entitymanager.jar;C:\java\javassist\javassist.ja= r;C:\java\slf4j\sl4j-1.5.2\slf4j-api-1.5.2.jar;C:\java\slf4j\sl4j-1.5.2\slf= 4j-log4j12-1.5.2.jar;C:\src\seamitp\lib\dom4j.jar;C:\src\seamitp\lib\activa= tion.jar;C:\src\seamitp\lib\antlr.jar;C:\src\seamitp\lib\antlr-runtime.jar;= C:\src\seamitp\classes\hot;C:\src\seamitp\classes\main;/C:/eclipse3.5/eclip= se/configuration/org.eclipse.osgi/bundles/310/1/.cp/;/C:/eclipse3.5/eclipse= /configuration/org.eclipse.osgi/bundles/308/1/.cp/;/C:/eclipse3.5/eclipse/c= onfiguration/org.eclipse.osgi/bundles/309/1/.cp/, hibernate.bytecode.use_reflection_optimizer=3Dfalse, java.vm.specification.name=3DJava Virtual Machine Specification, java.vm.specification.version=3D1.0, sun.cpu.endian=3Dlittle, sun.os.patch.level=3DService Pack 1, hibernate.connection.provider_class=3Dorg.hibernate.ejb.connection.Injected= DataSourceConnectionProvider, java.io.tmpdir=3DC:\Users\lucio\AppData\Local\Temp\, java.vendor.url.bug=3Dhttp://java.sun.com/cgi-bin/bugreport.cgi, os.arch=3D= x86, java.awt.graphicsenv=3Dsun.awt.Win32GraphicsEnvironment, java.ext.dirs=3DC:\Program Files\Java\jdk1.6.0_06\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, user.dir=3DC:\src\seamitp\test, line.separator=3D , java.vm.name=3DJava HotSpot(TM) Client VM, java.security.auth.login.config=3Djar:file:/C:/java/openejb-3.1.1/lib/opene= jb-core-3.1.1.jar!/login.config, file.encoding=3DCp1252, hibernate.use_identifier_rollback=3Dfalse, noBanner=3Dtrue, hibernate.transaction.manager_lookup_class=3Dorg.apache.openejb.hibernate.T= ransactionManagerLookup, java.specification.version=3D1.6, hibernate.show_sql=3Dtrue} DEBUG - initializing class SessionFactoryObjectFactory DEBUG - registered: f2c9904b239bc7dc01239bc7dce40000 (unnamed) INFO - Not binding factory to JNDI, no JNDI name configured DEBUG - instantiated session factory DEBUG - Execute first pass mapping processing DEBUG - Process hbm files DEBUG - Process annotated classes DEBUG - processing fk mappings (*ToOne and JoinedSubclass) DEBUG - processing extends queue DEBUG - processing collection mappings DEBUG - processing native query and ResultSetMapping mappings DEBUG - processing association property references DEBUG - processing foreign key constraints DEBUG - Execute first pass mapping processing DEBUG - Process hbm files DEBUG - Process annotated classes DEBUG - processing fk mappings (*ToOne and JoinedSubclass) DEBUG - processing extends queue DEBUG - processing collection mappings DEBUG - processing native query and ResultSetMapping mappings DEBUG - processing association property references DEBUG - processing foreign key constraints INFO - Running hbm2ddl schema export DEBUG - import file not found: /import.sql INFO - exporting generated schema to database INFO - schema export complete DEBUG - Execute first pass mapping processing DEBUG - Process hbm files DEBUG - Process annotated classes DEBUG - processing fk mappings (*ToOne and JoinedSubclass) DEBUG - processing extends queue DEBUG - processing collection mappings DEBUG - processing native query and ResultSetMapping mappings DEBUG - processing association property references DEBUG - processing foreign key constraints DEBUG - Execute first pass mapping processing DEBUG - Process hbm files DEBUG - Process annotated classes DEBUG - processing fk mappings (*ToOne and JoinedSubclass) DEBUG - processing extends queue DEBUG - processing collection mappings DEBUG - processing native query and ResultSetMapping mappings DEBUG - processing association property references DEBUG - processing foreign key constraints DEBUG - obtaining JTA TransactionManager DEBUG - Checking 0 named HQL queries DEBUG - Checking 0 named SQL queries DEBUG - Using default 'openejb.jndiname.strategy.class=3Dorg.apache.openejb.assembler.classic.Jnd= iBuilder$TemplatedStrategy' DEBUG - Using default 'openejb.jndiname.format=3D{deploymentId}{interfaceType.annotationName}' INFO - Deployed Application(path=3Dclasspath.ear) DEBUG - opened session at timestamp: 12524490499 DEBUG - Looking for a JTA transaction to join DEBUG - successfully registered Synchronization < console trace> --=20 View this message in context: http://www.nabble.com/EJB-classpath-problem-i= n-eclipse3.5-tp25343341p25355519.html Sent from the OpenEJB User mailing list archive at Nabble.com.