[JBoss-user] HELP: EJB Deployment order

2002-09-30 Thread Daniel CAUNE
Hi, I use JBoss 3.0.2. I deploy each of my EJBs in a JAR file. Some of my EJBs reference some others. I encounter problem during deployment while JBoss tries to load the JAR of an EJB that references another EJB not yet loaded : "WARN [ServiceController] Problem starting service jboss.j2ee:ser

Re: [JBoss-user] VOTE FOR JBOSS

2002-05-28 Thread Daniel CAUNE
Marc (Jean-Claude?) I'd really appreciate that your change your behaviour and that you ban your favorite french word "putain" from this mailing-list.  I try to convince my CTO to use JBoss instead of Weblogic on our platforms, but your behaviour (of a 6 years old little boy) in this mailing-

Re: [JBoss-user] RE: Problem Connecting to Oracle v8.1.7

2001-08-07 Thread Daniel CAUNE
> If possible, can u pls me mail me > classes12.zip file on my mail id > Hmmm... I'm afraid you receive some megas on your email box, don't you?! ;o) You can find the Oracle JDBC driver at: (1). http://otn.oracle.com/software/content.html (2). Combo box "Select a Utility or Driver", click "

[JBoss-user] HELP: Strange JDBC problem.

2001-08-06 Thread Daniel CAUNE
Hi, I encounter a strange behaviour with JBoss while I try to move the cursor to the last row in this ResultSet object. PreparedStatement ps = dc.prepareStatement("SELECT * FROM Foo", ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE); ResultSet rs = ps.executeQuery(

[JBoss-user] DataSource declaration. Help again!

2001-08-06 Thread Daniel CAUNE
Hi, I always have the problem of datasource declaration. I found a "solution" (from these mailing-list threads) but I don't understand how it can work! :o) jboss.xml: [...] http://www.jboss.org/doco_files/jboss.dtd";> ConnectionFactory ejb/ConnectionFactoryEJB

Re: [JBoss-user] jboss.xml DTD missing from jboss.org website

2001-08-06 Thread Daniel CAUNE
Bryan, You will find it at: http://www.jboss.org/doco_files/jboss.dtd I think this is a "bug" already declared (I think a saw a bug report on jboss-development these last few days). Daniel On Saturday 04 August 2001 17:54, Bryan Field-Elliot wrote: > The standard URL for the jboss.xml DTD, a

Re: [JBoss-user] HELP! EJB 1.1 specification compliance

2001-08-01 Thread Daniel CAUNE
ation to > > Container in the ejb-jar.xml. Also in the jboss.xml > > the tag is not required. > > > > Paul > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]On Behalf Of Daniel CAUNE > > Sent: 31

Re: [JBoss-user] HELP! EJB 1.1 specification compliance

2001-08-01 Thread Daniel CAUNE
m: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Daniel CAUNE > Sent: 31 July 2001 15:03 > To: [EMAIL PROTECTED]; Gregor Rayman > Subject: Re: [JBoss-user] HELP! EJB 1.1 specification compliance > > > The problem is that you've declared your bean will access data

Re: [JBoss-user] HELP! EJB 1.1 specification compliance

2001-07-31 Thread Daniel CAUNE
> The problem is that you've declared your bean will access datasource > called "java:comp/env/jdbc/myDataSource", but you have not bound > "java:comp/env/jdbc/myDataSource" to "java:/myDataSource". > > > To do this, you have to specify the binding in jboss.xml. Try this: > Yes, I forgot this poin

[JBoss-user] HELP! EJB 1.1 specification compliance

2001-07-30 Thread Daniel CAUNE
Hi, I don't succeed to declare a datasource and retrieve it from my bean as the EJB specification recommends. I read from the Enterprise JavaBeans v1.1, Final Release of the Sun specification: "The EJB specification recommends, but does not require, tat all resource manager connection factory

[JBoss-user] EJB environment entry jndi naming

2001-07-25 Thread Daniel CAUNE
Hi, Sorry for this next stupid question! An environment entry, defined in a EJB deployment file, can be retrieved (from this EJB) by prefixing its name with "java:comp/env/", exact ? somePaths/myEntryName java.lang.String myValue => initialContext.lookup("java:comp/env/somePaths/myEnt

[JBoss-user] Problem with EJB JNDI name

2001-07-25 Thread Daniel CAUNE
Hi, I get a "javax.naming.NameNotFoundException" while I try to retrieve the home of my EJB with the correct jndi name: InitialContext iniContext = new InitialContext(); PlayerAttributeClassHome home = (PlayerAttributeClassHome) iniContext.lookup("example1/PlayerAttributeClass");