Re: [JBoss-user] Deployment Problem: Creating fk-constraints before creating tables...???

2003-08-18 Thread Stefan Schubert
On Thu, 14 Aug 2003 19:52:55 +0300, Alexey Loubyansky [EMAIL PROTECTED] 
wrote:

Hello Stefan,

it should not happen. First, a table is created. Then, foreign key
constraints are generated only if the related table exists.
What JBoss version you are using?
(jboss-3.2.0_tomcat-4.1.24)

Hi,

last time I wrote that I reordered the ejb-jar.xml according to the 
dependencies. However the effekt is still the same:

Here is a log sniplett:

09:10:05,305 INFO  [KeyCuMitarbeiterEJB] Created table 'MITARBEITER' 
successfully.
09:10:05,306 DEBUG [KeyCuMitarbeiterEJB] Executing SQL: ALTER TABLE 
KAUFPREISANPASSUNG ADD CONSTRAINT FK_KAUFPREISANPASSUNG_18X7E81 FOREI
GN KEY (FK_FACHVER_MITARBEITER) REFERENCES MITARBEITER (MA_NR)
09:10:05,438 WARN  [KeyCuMitarbeiterEJB] Could not add foreign key 
constraint: table=KAUFPREISANPASSUNG
09:10:05,485 ERROR [EntityContainer] Starting failed
org.jboss.deployment.DeploymentException: Error while adding foreign key 
constraint; - nested throwable: (java.sql.SQLException: ORA-0094
2: table or view does not exist
)
   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.addForeignKeyConstraint(JDBCStartCommand.java:412)
   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.addForeignKeyConstraint(JDBCStartCommand.java:332)
   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.execute(JDBCStartCommand.java:130)
   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.startStoreManager(JDBCStoreManager.java:499)
   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.start(JDBCStoreManager.java:410)
   at 
org.jboss.ejb.plugins.CMPPersistenceManager.start(CMPPersistenceManager.java:170)
   at 
org.jboss.ejb.EntityContainer.startService(EntityContainer.java:339)
.

The error occur on deployment, when I let jboss generate the schema. On 
next deployment the error doesn't occur, but the same type
occurs for a different table. After a cycle of about 10 deployments no 
error occurs, becuase all tables have been created in the
meantime...

Cheers,

Stefan



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Deployment Problem: Creating fk-constraints beforecreating tables...???

2003-08-18 Thread Alexey Loubyansky
Could you try it with 3.2.2 (better from CVS) and if it fails, please, 
submit a bug report.

Thank you,

alex

Stefan Schubert wrote:

On Thu, 14 Aug 2003 19:52:55 +0300, Alexey Loubyansky [EMAIL PROTECTED] 
wrote:

Hello Stefan,

it should not happen. First, a table is created. Then, foreign key
constraints are generated only if the related table exists.
What JBoss version you are using?


(jboss-3.2.0_tomcat-4.1.24)

Hi,

last time I wrote that I reordered the ejb-jar.xml according to the 
dependencies. However the effekt is still the same:

Here is a log sniplett:

09:10:05,305 INFO  [KeyCuMitarbeiterEJB] Created table 'MITARBEITER' 
successfully.
09:10:05,306 DEBUG [KeyCuMitarbeiterEJB] Executing SQL: ALTER TABLE 
KAUFPREISANPASSUNG ADD CONSTRAINT FK_KAUFPREISANPASSUNG_18X7E81 FOREI
GN KEY (FK_FACHVER_MITARBEITER) REFERENCES MITARBEITER (MA_NR)
09:10:05,438 WARN  [KeyCuMitarbeiterEJB] Could not add foreign key 
constraint: table=KAUFPREISANPASSUNG
09:10:05,485 ERROR [EntityContainer] Starting failed
org.jboss.deployment.DeploymentException: Error while adding foreign key 
constraint; - nested throwable: (java.sql.SQLException: ORA-0094
2: table or view does not exist
)
   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.addForeignKeyConstraint(JDBCStartCommand.java:412) 

   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.addForeignKeyConstraint(JDBCStartCommand.java:332) 

   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.execute(JDBCStartCommand.java:130) 

   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.startStoreManager(JDBCStoreManager.java:499) 

   at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.start(JDBCStoreManager.java:410) 

   at 
org.jboss.ejb.plugins.CMPPersistenceManager.start(CMPPersistenceManager.java:170) 

   at 
org.jboss.ejb.EntityContainer.startService(EntityContainer.java:339)
.

The error occur on deployment, when I let jboss generate the schema. On 
next deployment the error doesn't occur, but the same type
occurs for a different table. After a cycle of about 10 deployments no 
error occurs, becuase all tables have been created in the
meantime...

Cheers,

Stefan



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Deployment Problem: Creating fk-constraints before creating tables...???

2003-08-18 Thread Stefan Schubert
Hi Alex,

On Mon, 18 Aug 2003 11:38:06 +0300, Alexey Loubyansky [EMAIL PROTECTED] 
wrote:

Could you try it with 3.2.2 (better from CVS) and if it fails, please, 
submit a bug report.
OK I will try it out somewhere during the week and will post the results 
again.

Cheers,

Stefan

--
___
i\tec Gesellschaft für Informationsmanagement mbH
An Agency of the BBDO Worldwide Network
Bonner Straße 172-176 - 50968 Köln

Dipl.-Inform. Stefan Schubert
Senior-Berater
Fon:  +49 (0)221 93724-29
Mob: +49 (0)172 2890055
Fax:  +49 (0)221 93724-50
Mail: [EMAIL PROTECTED]
Web: http://www.itec-koeln.de



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Deployment Problem: Creating fk-constraints before creating tables...???

2003-08-15 Thread Stefan Schubert
On Thu, 14 Aug 2003 19:52:55 +0300, Alexey Loubyansky [EMAIL PROTECTED] 
wrote:

Hello Stefan,

it should not happen. First, a table is created. Then, foreign key
constraints are generated only if the related table exists.
What JBoss version you are using?
Hi Alex,

Im using the jboss-3.2.0_tomcat-4.1.24 Bundle. Do you know how jboss 
processes the creation process? I thing it parses the cmp-Entries of the 
Entity Bean, and next looks up in the relations section for any cmr-fields 
belonging to the entity and assembles that the create statement.

From what I have seen I guess that jboss tries than to establish the fk- 
constraints belonging to this table, even when the other Beans (i.e. 
Tables) have not bean created yet.
Meanwhile I have rearanged the order in the ejb-jar to fullfill some 
dependencies in this thought creation order. However I haven't come to 
recreate the db-user yet, I will try this over the weekend and will post 
the result log entry in case there are still problems.

Cheers,

Stefan







---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Deployment Problem: Creating fk-constraints before creating tables...???

2003-08-14 Thread Alexey Loubyansky
Hello Stefan,

it should not happen. First, a table is created. Then, foreign key
constraints are generated only if the related table exists.

What JBoss version you are using?

alex

Thursday, August 14, 2003, 6:57:18 PM, Stefan Schubert wrote:


 Hi there,

 I got an ugly deployment problem here. I configured jboss to drop and 
 create tables and to create pk and fk-constriants.

 However during deployment I got errors whil creating the FKs, telling me 
 that the table does not exists. I thought Jboss will create all tables 
 first, before adding the constriants...

 At the moment I can solve my problem by deploying three times and every 
 step the missing table form the previous step was generated. I do this 
 iterativly as long as no problem is reported.

 However I think this is not the way it should be. Do you had anyy of this 
 experience and what can I do to ensure that the tables are created first?

 Cheers,

 Stefan 


 ---
 This SF.Net email sponsored by: Free pre-built ASP.NET sites including
 Data Reports, E-commerce, Portals, and Forums are available now.
 Download today and enter to win an XBOX or Visual Studio .NET.
 http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Deployment problem ...

2001-07-12 Thread Burkhard Vogel

Hi,
do you use inner classes? What do your DD look like? Are your Home and
Remote interface in the jar?
Burkhard
- Original Message -
From: Hermann RANGAMANA [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 12, 2001 11:47 AM
Subject: [JBoss-user] Deployment problem ...


 Hi all,

 I deploy my bean, and jBoss throws the following exception, once by the
 verifier, and then by [auto-deploy].

 Here is the exception. Note that the my bean class name is, say,
 com.blah.MyBean, but the [verifier] (and then the the auto-deployer) is
 looking for another class (com.blah.MyBean$7) to verify and deploy, maybe
an
 on-flight created and compiled class :

 [J2EE Deployer Default] Starting bin-part1-deploy.jar failed!
 [Auto deploy] java.lang.NoClassDefFoundError: com/blah/MyBean$7
 [Auto deploy]   at java.lang.Class.getMethod0(Native Method)
 [Auto deploy]   at java.lang.Class.getMethod(Class.java:888)
 [Auto deploy]   at

org.jboss.ejb.StatelessSessionContainer.setupBeanMapping(StatelessSessionCon
 tainer.java:368)
 [Auto deploy]   at

org.jboss.ejb.StatelessSessionContainer.init(StatelessSessionContainer.java:
 144)
 [Auto deploy]   at org.jboss.ejb.Application.init(Application.java:183)
 

 Can anyone shed a light on what's happening? And how it can be solved?

 Thanx

 --hermann


 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Deployment problem ...

2001-07-12 Thread Hermann RANGAMANA

I checked out the DD and the remote interface was mistyped 

Thanx burkhard

--hermann
- Original Message -
From: Burkhard Vogel [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 12, 2001 12:01 PM
Subject: Re: [JBoss-user] Deployment problem ...


 Hi,
 do you use inner classes? What do your DD look like? Are your Home and
 Remote interface in the jar?
 Burkhard
 - Original Message -
 From: Hermann RANGAMANA [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, July 12, 2001 11:47 AM
 Subject: [JBoss-user] Deployment problem ...


  Hi all,
 
  I deploy my bean, and jBoss throws the following exception, once by the
  verifier, and then by [auto-deploy].
 
  Here is the exception. Note that the my bean class name is, say,
  com.blah.MyBean, but the [verifier] (and then the the auto-deployer) is
  looking for another class (com.blah.MyBean$7) to verify and deploy,
maybe
 an
  on-flight created and compiled class :
 
  [J2EE Deployer Default] Starting bin-part1-deploy.jar failed!
  [Auto deploy] java.lang.NoClassDefFoundError: com/blah/MyBean$7
  [Auto deploy]   at java.lang.Class.getMethod0(Native Method)
  [Auto deploy]   at java.lang.Class.getMethod(Class.java:888)
  [Auto deploy]   at
 

org.jboss.ejb.StatelessSessionContainer.setupBeanMapping(StatelessSessionCon
  tainer.java:368)
  [Auto deploy]   at
 

org.jboss.ejb.StatelessSessionContainer.init(StatelessSessionContainer.java:
  144)
  [Auto deploy]   at org.jboss.ejb.Application.init(Application.java:183)
  
 
  Can anyone shed a light on what's happening? And how it can be solved?
 
  Thanx
 
  --hermann
 
 
  ___
  JBoss-user mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-user


 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Deployment problem ...

2001-07-12 Thread Maraya Michael


Sound like your bean implementation has an anonymous inner class
that wasn't included in the JAR file.  When you build your EJB JAR file,
make sure to include MyBean$7.class presumably in your com/blah directory.

---
Michael R. Maraya

 --
 From: Hermann RANGAMANA[SMTP:[EMAIL PROTECTED]]
 Reply To: [EMAIL PROTECTED]
 Sent: Thursday, July 12, 2001 5:47 AM
 To:   [EMAIL PROTECTED]
 Subject:  [JBoss-user] Deployment problem ...
 
 Hi all,
 
 I deploy my bean, and jBoss throws the following exception, once by the
 verifier, and then by [auto-deploy].
 
 Here is the exception. Note that the my bean class name is, say,
 com.blah.MyBean, but the [verifier] (and then the the auto-deployer) is
 looking for another class (com.blah.MyBean$7) to verify and deploy, maybe
 an
 on-flight created and compiled class :
 
 [J2EE Deployer Default] Starting bin-part1-deploy.jar failed!
 [Auto deploy] java.lang.NoClassDefFoundError: com/blah/MyBean$7
 [Auto deploy]   at java.lang.Class.getMethod0(Native Method)
 [Auto deploy]   at java.lang.Class.getMethod(Class.java:888)
 [Auto deploy]   at
 org.jboss.ejb.StatelessSessionContainer.setupBeanMapping(StatelessSessionC
 on
 tainer.java:368)
 [Auto deploy]   at
 org.jboss.ejb.StatelessSessionContainer.init(StatelessSessionContainer.jav
 a:
 144)
 [Auto deploy]   at org.jboss.ejb.Application.init(Application.java:183)
 
 
 Can anyone shed a light on what's happening? And how it can be solved?
 
 Thanx
 
 --hermann
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Deployment problem. Pls, help me!!!

2001-05-16 Thread Burkhard Vogel

slight typo in jboss.xml:



- Original Message -
From: Fejes András (Amdocs) [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 16, 2001 12:30 PM
Subject: [JBoss-user] Deployment problem. Pls, help me!!!


[snip]

 jboss.xml

 ?xml version=1.0 encoding=UTF-8?
 jboss
enterprise-beans
   session
  ejb-nameUniqueBean/ejb-name
  jndi-nameUniqueBean/jndi-name
   /session
_this line has to go_

   resource-ref
  res-ref-namejdbc/ProjectDataSource/res-ref-name
  resource-namejdbc/ProjectDataSource/resource-name
   /resource-ref
   /session
_HERE_

/enterprise-beans
resource-managers
   resource-manager
  res-namejdbc/ProjectDataSource/res-name
  res-jndi-namejava:/ProjectDataSource/res-jndi-name
   /resource-manager
/resource-managers
 /jboss




___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Deployment problem. Pls, help me!!!

2001-05-16 Thread Burkhard Vogel

ups, missread the lot,
you can ommit the enterprise-beans-lot in jboss.xml, see
http://www.jboss.org/documentation/HTML/ch06.html 
Burkhard

- Original Message -
From: Fejes András (Amdocs) [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 16, 2001 2:36 PM
Subject: RE: [JBoss-user] Deployment problem. Pls, help me!!!


Thanks.

I made the correction, but the problem is the same.
I attached the jboss.jcml entry:
...
mbean code=org.jboss.jdbc.XADataSourceLoader
name=DefaultDomain:service=XADataSource,name=ProjectDataSource
attribute
name=DataSourceClassorg.opentools.minerva.jdbc.xa.wrapper.XADataSourceImp
l/attribute
attribute name=PoolNameProjectDataSource/attribute
attribute
name=URLjdbc:sybase:Tds:localhost:2638/projectsdb/attribute
attribute name=JDBCUserdba/attribute
attribute name=Passwordsql/attribute
  /mbean
...

Andras


-Original Message-
From: Burkhard Vogel [mailto:[EMAIL PROTECTED]]
Sent: 2001. május 16. 13:48
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] Deployment problem. Pls, help me!!!


slight typo in jboss.xml:



- Original Message -
From: Fejes András (Amdocs) [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 16, 2001 12:30 PM
Subject: [JBoss-user] Deployment problem. Pls, help me!!!


[snip]

 jboss.xml

 ?xml version=1.0 encoding=UTF-8?
 jboss
enterprise-beans
   session
  ejb-nameUniqueBean/ejb-name
  jndi-nameUniqueBean/jndi-name
   /session
_this line has to go_

   resource-ref
  res-ref-namejdbc/ProjectDataSource/res-ref-name
  resource-namejdbc/ProjectDataSource/resource-name
   /resource-ref
   /session
_HERE_

/enterprise-beans
resource-managers
   resource-manager
  res-namejdbc/ProjectDataSource/res-name
  res-jndi-namejava:/ProjectDataSource/res-jndi-name
   /resource-manager
/resource-managers
 /jboss




___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] deployment problem

2001-05-04 Thread Marko Strukelj
Title: RE: [JBoss-user] deployment problem





Make sure you have META-INF directory (all caps) and not meta-inf.


 Marko.



 -Original Message-
 From: David Li [mailto:[EMAIL PROTECTED]]
 Sent: Friday, May 04, 2001 2:16 AM
 To: [EMAIL PROTECTED]
 Subject: [JBoss-user] deployment problem
 
 
 
 Hi, veteran.
 
 Can someone explain to me why I got this problem? 
 
 I used Jar tool to generate a EAR file that contains one jar file and
 one war file, and meta-inf/applicatoin.xml deployment descriptor. But,
 everytime when I put the EAR file to deploy folder of JBoss+Tomcat ver
 2.2 and always got the following error:
 
 ...
 [Auto deploy] org.jboss.deployment.J2eeDeploymentException: no
 deployment descriptor found but file that could be ment as:
 meta-inf/application.xml - META-INF/application.xml
 [Auto deploy] ar
 org.jboss.deployment.Installer.determineType(Installer.java:397)
 ...
 
 But, if I used J2EE's GUI-based deploytool to generate the EAR file
 containing the same components, the jBoss deployed it just fine. 
 
 Thanks for your help.
 
 DL
 
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 





Re: [JBoss-user] deployment problem

2001-05-04 Thread Vinay Menon
Make sure it is META-INF and not meta-inf. It is case sensitive.  Vinay   - Original Message - From:David Li Sent:Friday, May 04, 2001 1:32 AM To:[EMAIL PROTECTED] Subject:[JBoss-user] deployment problem Hi, veteran.Can someone explain to me why I got this problem? I used Jar tool to generate a EAR file that contains one jar file andone war file, and meta-inf/applicatoin.xml deployment descriptor. But,everytime when I put the EAR file to deploy folder of JBoss+Tomcat ver2.2 and always got the following error:...[Auto deploy] org.jboss.deployment.J2eeDeploymentException: nodeployment descriptor found but file that could be ment as:meta-inf/application.xml - META-INF/application.xml[Auto deploy] arorg.jboss.deployment.Installer.determineType(Installer.java:397)...But, if I used J2EE's GUI-based deploytool to generate the EAR filecontaining the same components, the jBoss deployed it just fine. Thanks for your help.DL___JBoss-user mailing list[EMAIL PROTECTED]http://lists.sourceforge.net/lists/listinfo/jboss-user Get your FREE download of MSN Explorer at http://explorer.msn.com


RE: [JBoss-user] Deployment problem.

2001-05-04 Thread RRokytskyy

Funny, but that seem to forgot to put that class into the .jar file... Each
deployed .jar file should have all required classes, or they should be in
the JBoss bootstrap classpath...

You have to resolve that manually...

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Freitag, 4. Mai 2001 11:17
 To: [EMAIL PROTECTED]
 Subject: [JBoss-user] Deployment problem.
 
 
 This eMail was already checked for viruses by TrendMicro InterScan!!!
 Hi,
 
 i installed jBoss 2.2.1 on a windows NT 4 box. I use the default
 configuration that came with the archiv.
 
 i want to try the examples that come with Enterprise Java Beans from
 Richard Monson Haefel (O'Reilly).
 
 After some modifications to the batchfiles managed to create 
 the jar files.
 
 The entity beans deploed ok as far as i can tell.
 ...
 [Auto deploy] Auto deploy of 
 file:/D:/Programme/jboss/deploy/customer.jar
 [J2EE Deployer Default] Module customer.jar is not running
 [J2EE Deployer Default] Destroying application customer.jar
 [J2EE Deployer Default] Deploy J2EE application:
 file:/D:/Programme/jboss/deploy/customer.jar
 [J2EE Deployer Default] Create application customer.jar
 [J2EE Deployer Default] install module customer.jar
 [Container factory]
 Deploying:file:/D:/Programme/jboss/tmp/deploy/Default/customer.jar
 [Verifier] Verifying
 file:/D:/Programme/jboss/tmp/deploy/Default/customer.jar/ejb1003.jar
 [Verifier] CustomerBean: Verified.
 [Container factory] Deploying CustomerBean
 [Container factory] Container Invoker RMI Port=''
 [Container factory] Container Invoker Client SocketFactory='Default'
 [Container factory] Container Invoker Server SocketFactory='Default'
 [Container factory] Container Invoker Optimize='true'
 [Container factory] JRMP 1.2.2 CI initialized
 [JAWS] Initializing JAWS plugin for CustomerBean
 [JAWS] Loading standardjaws.xml :
 file:/D:/Programme/jboss/conf/default/standardjaws.xml
 [JAWS] Table 'CustomerBean' already exists
 [Container factory] Bound CustomerBean to CustomerBean
 [Container factory] Deployed application:
 file:/D:/Programme/jboss/tmp/deploy/Default/customer.jar
 [J2EE Deployer Default] J2EE application:
 file:/D:/Programme/jboss/deploy/customer.jar is deployed.
 ...
 
 But if i deploy the session beans i got an exception that the 
 bean isn't
 there.
 
 ...
 [Auto deploy] Auto deploy of
 file:/D:/Programme/jboss/deploy/reservation.jar
 [J2EE Deployer Default] Deploy J2EE application:
 file:/D:/Programme/jboss/deploy/reservation.jar
 [J2EE Deployer Default] Create application reservation.jar
 [J2EE Deployer Default] install module reservation.jar
 [Container factory]
 Deploying:file:/D:/Programme/jboss/tmp/deploy/Default/reservation.jar
 [Verifier] Verifying
 file:/D:/Programme/jboss/tmp/deploy/Default/reservation.jar/ej
 b1004.jar
 [Verifier] java.lang.NoClassDefFoundError: com/titan/customer/Customer
 [Verifier]  at java.lang.Class.getMethods0(Native Method)
 [Verifier]  at java.lang.Class.getMethods(Unknown Source)
 [Verifier]  at
 org.jboss.verifier.strategy.AbstractVerifier.hasEJBCreateMetho
 d(AbstractVerifier.java,
 
 Compiled Code)
 [Verifier]  at
 org.jboss.verifier.strategy.EJBVerifier11.verifyEntityBean(EJB
Verifier11.java,
 
 Compiled Code)
 [Verifier]  at
 org.jboss.verifier.strategy.EJBVerifier11.checkEntity(EJBVerif
ier11.java:119)
 [Verifier]  at
 org.jboss.verifier.BeanVerifier.verify(BeanVerifier.java, 
 Compiled Code)
 [Verifier]  at
 org.jboss.ejb.ContainerFactory.deploy(ContainerFactory.java, 
 Compiled Code)
 [Verifier]  at
 org.jboss.ejb.ContainerFactory.deploy(ContainerFactory.java, 
 Compiled Code)
 [Verifier]  at
 org.jboss.ejb.ContainerFactory.deploy(ContainerFactory.java, 
 Compiled Code)
 [Verifier]  at java.lang.reflect.Method.invoke(Native Method)
 [Verifier]  at
 com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java,
 Compiled Code)
 [Verifier]  at
 com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.
java:1523)
 [Verifier]  at
 org.jboss.deployment.J2eeDeployer.startApplication(J2eeDeployer.java,
 Compiled Code)
 [Verifier]  at
 org.jboss.deployment.J2eeDeployer.deploy(J2eeDeployer.java:178)
 [Verifier]  at java.lang.reflect.Method.invoke(Native Method)
 [Verifier]  at
 com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java,
 Compiled Code)
 [Verifier]  at
 com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.
java:1523)
 [Verifier]  at 
 org.jboss.ejb.AutoDeployer.deploy(AutoDeployer.java:358)
 [Verifier]  at org.jboss.ejb.AutoDeployer.run(AutoDeployer.java,
 Compiled Code)
 [Verifier]  at java.lang.Thread.run(Unknown Source)
 [Container factory] Deploying ReservationBean
 [Container factory] Container Invoker RMI Port=''
 [Container factory] Container Invoker Client SocketFactory='Default'
 [Container factory] Container Invoker Server SocketFactory='Default'
 [Container factory] Container Invoker