Re: [JBoss-user] Trouble with Paths JBOSS/TOMCAT

2001-08-03 Thread Gregor Rayman
Have a look into the scripts run and run_with_tomcat, they use relative paths.   -- gR     - Original Message - From: Phil Harrison To: [EMAIL PROTECTED] Sent: Friday, August 03, 2001 11:14 PM Subject: [JBoss-user] Trouble with Paths JBOSS/TOMCAT I hav

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

2001-07-30 Thread Gregor Rayman
"Daniel CAUNE" <[EMAIL PROTECTED]> has problems with datasources: [...] > ejb-jar.xml: > > (...) > > jdbc/myDataSource > javax.sql.DataSource > Container > > (...) > > myBean.java: > -- > (...) > Context initialContext = new InitialContext(); > javax.sql.DataSource dataS

Re: [JBoss-user] JSP PreCompilation

2001-07-28 Thread Gregor Rayman
"Tahir Awan" <[EMAIL PROTECTED]> wrote: > Hi, > > Any idea if its possible topreCompile JSPs bundled in .war file? I could not > find anything on jakarta.org about this. > > Thanks, > Tahir Here an Ant task. You need to customize it:

[JBoss-user] 8083

2001-07-10 Thread Gregor Rayman
What si the HTTP Server on this port good for? -- gR ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] Building Manual

2001-07-09 Thread Gregor Rayman
Hi all, always when I try to build the CVS manual, I get the following error message Call to extension function failed: com.nwalsh.xalan.Table What does it mean? -- gR ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lis

Re: [JBoss-user] RE: Struts & Jboss?

2001-07-06 Thread Gregor Rayman
I wrote: > "Simon Tang" <[EMAIL PROTECTED]> wrote: > > > I am assuming that you packaged everything into an EAR file. In that > > case, you will need to specify in the Manifest.mf file in both JAR and > > WAR the classpath to the Struts JAR. > > > > In your manifest.mf add (or something like this

Re: [JBoss-user] RE: Struts & Jboss?

2001-07-06 Thread Gregor Rayman
"Simon Tang" <[EMAIL PROTECTED]> wrote: > I am assuming that you packaged everything into an EAR file. In that > case, you will need to specify in the Manifest.mf file in both JAR and > WAR the classpath to the Struts JAR. > > In your manifest.mf add (or something like this): > > Class-Path: ./

Re: [JBoss-user] findAll and RowSet

2001-07-05 Thread Gregor Rayman
So I've just figured it out, there is no way how to add another method to the home interface of an entity EJB. The spec does not allow this, according to the section 9.2.8 only create and find methods are allowed. -- gR ___ JBoss-user mailing list

Re: [JBoss-user] findAll and RowSet

2001-07-05 Thread Gregor Rayman
"Burkhard Vogel" <[EMAIL PROTECTED]> wrote: > > hi, > > you certainly can do this. > > Both methods would be called retrieveAllTabularData(); > > the ejb prefix is reserved for finders (FindBy...) create, remove, > activate, > > passivate... > > BUT I would strongly recommend NOT to pass an Resul

[JBoss-user] findAll and RowSet

2001-07-04 Thread Gregor Rayman
Hi all. In my application I want to display a table with my objets. To make it more performat I wanted to use RowSet instead of findAll and then fatching the data for each object separately. (I use BMP, since the data are already stored in an RDBMS and used by legacy applications). This aproach

[JBoss-user] Naming datasource

2001-07-02 Thread Gregor Rayman
Hi all, I try to refactor a two tier application and as the first step I want to move the database access to stateless session beans. So I've created a datasource called "java:/OracleDB" in JBoss and I want to access it through the name "java:comp/env/MyDB" from the bean's methods. Unfortuna