Re: [JBoss-user] Bean Caching

2001-03-28 Thread Daniel Sadilek
Hi, do you get every record on its own, or do you get a result-set. Perhaps it is a good idea to get a result-set which contains the data in "normal" java object instead of remote references... if you don't do it this way already... Regards, Daniel Giulia Quadraccia wrote: > > Hey > I have bee

[JBoss-user] Tomcat + Apache using mod_jk

2001-03-28 Thread jBoss Monkey
I have found one strange behavior in tomcat when started as embeded in jBoss. When the tomcat is started by jBoss(embeded), it does not create  mod_jk.conf-auto file in the  conf  folder of Tomcat installation. This file needs to be included in http.conf file of Apache in order to pass on requests

[JBoss-user] jboss startup errors

2001-03-28 Thread Anderson, Duncan
Hi, tried starting the latest binary release of jboss up (java -jar jboss.jar) and got: Exception in thread "main" [default] javax.xml.parsers.FactoryConfigurationError: java.lang.ClassNotFoundException: org.apache.crimson.jaxp.DocumentBuilderFactoryImpl This was on win-ntI also tried the sa

[JBoss-user] JBoss packaging

2001-03-28 Thread Blasius Lofi Dewanto
Hi all, I have a question about the packaging of ejbs for JBoss deployment. For a big deployment, let's say more than 20 ejbs, the structure used by JBoss is unpracticable. This is an example: Let's say I have many ejbs in different kind of packages: com.test1 com.test2 com.etc ... If I want

[JBoss-user] JAAS based Security

2001-03-28 Thread Lenz Holger (PN-ST/SF)
Hello, following the description in http://www.jboss.org/documentation/HTML/ch09s54.html , I could create an example for JAAS based security in JBoss. In order to develop my own LoginModules, I would like to have a look at the sources of org.jboss.security.plugins.samples.JaasServerLoginModule an

Re: [JBoss-user] CMP Inheritance .... PLEASE Help

2001-03-28 Thread ivanhoe Abrahams
Dan Christopherson wrote: > OK, I've got comments below trying to explain why your implementation is > giving you problems. What it amounts to, though, is you're doing more work > than you really need to and probably making the database do more work than > it needs to. > > First, as a fair warnin

RE: [JBoss-user] PostgreSql connection pool hangs

2001-03-28 Thread marc fleury
|Usually a hang here indicates that either the jdbc driver isn't getting |loaded (you should see a message somewhere above there saying that the |driver was loaded) or that there was a problem connecting to the database. Yes it is a bit confusing, i agree. We can probably do better, this XA crap

[JBoss-user] Container managed transaction debugging?

2001-03-28 Thread Nguyen Thanh Phong
File crimson.jar is added to CLASSPATH in run.bat. So you should use run.bat to start tomcat. Nguyen Thanh Phong Tel: 84-8-837 25 06/837 25 07 Saigon Software Development Company (SDC)Fax: 84-8-837 25 11 10 Co Giang Street, Dist I, HCMC Email: [EMAIL PRO

Re: [JBoss-user] PostgreSql connection pool hangs

2001-03-28 Thread danch
Chris Dole wrote: > Hello, > > Can anyone provide some assistance? I am trying to use PostgreSQL v7.0.3 > with JBoss-2.1. The configuration entries in jboss.jcml are below. JBoss > hangs when it tries to start the connection pool. The log file is as > follows: > > [InFluidConPool] Starting >

RE: [JBoss-user] Database Issues -- InterBase (as a datasource)

2001-03-28 Thread David Jencks
Hi, I don't remember much about this, but I seem to recall that perhaps IBConsole uses CommitRetaining rather than Commit... this would mean you would NEVER see updates from other people until you restarted IBConsole. In my opinion IBConsole is most appropriate for those developing single user a

[JBoss-user] PostgreSql connection pool hangs

2001-03-28 Thread Chris Dole
Hello, Can anyone provide some assistance? I am trying to use PostgreSQL v7.0.3 with JBoss-2.1. The configuration entries in jboss.jcml are below. JBoss hangs when it tries to start the connection pool. The log file is as follows: [InFluidConPool] Starting [InFluidConPool] XA connection pool I

[JBoss-user] problem with oracle connection pool, Pl. help me its very urgent

2001-03-28 Thread chandra poluru
hi, i am using jboss-2.1, jdk1.3, oracle8i and i have created one connection pool "OracleDb" the pool has been created successfully. iam accessing the connection pool in an entity ejb. iam able get the connection. i have printed the connection object, and it's giving as     org.opentools.mi

Re: [JBoss-user] Problems with CD Example and CMP

2001-03-28 Thread Guy Rouillier
Add "-Djava.security.manager" to your java command. - Original Message - From: "Steve Shier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 4:38 AM Subject: [JBoss-user] Problems with CD Example and CMP > I'm trying to get the CD example working to test CMP

Re: [JBoss-user] Explicit commit and rollback in EJB

2001-03-28 Thread Russell
Hi Dan , Thanks for your info. Out of topic , I am trying to MessageDriveBean ejb , below is the list question regarding MDB : 1) What is MDB ? 2) What is the purpose of MDB ? 3) In what way can i use MDB ? To communicate between ejb bean ? 4) How to setup MDB in jboss ? BTW

[JBoss-user] [Fwd: Client hangs up while doing JNDI]

2001-03-28 Thread Ilker Sozat
Hi, Sorry for the previous incomplete message. Some key combination that I couldn't figure out is sending the mail on my Netscape mail reader and I accidentally pressed that combination. I have deployed my first beans to jboss and started the server successfully, but when I try to do a lookup on

[JBoss-user] Client hangs up while doing JNDI

2001-03-28 Thread Ilker Sozat
Hi, I have setup the jboss server and deployed two beans. It seems all okay on the server side (beans deployed, bound to names, ...). On the client side, when I do a lookup the client hangs. I have seen a similar message on the list asking for the following: ___

Re: [JBoss-user] Client class files dont compile on linux

2001-03-28 Thread Cuong Tran
Try javac -classpath /usr/local/jboss/client/ejb.jar:. -d . InterestClient.java --- Yasir <[EMAIL PROTECTED]> wrote: > I am stumped by a serious newbie dilemma. > > Im trying to code my first EJB's and deploy them on JBOSS. All i really want > to do is to be able to see how EJB's work and get

Re: [JBoss-user] Bean Caching

2001-03-28 Thread danch
Take a look at the 'No passivation cache' documentation at http://www.jboss.org/documentation/HTML/ch06s04.html Caches are discussed about halfway down that page. Giulia Quadraccia wrote: > Hey > I have been us ing jboss to deploy ejb for a simple shopping/portal system. > Can someone please e

Re: [JBoss-user] Explicit commit and rollback in EJB

2001-03-28 Thread danch
Russell wrote: > Hi Dan , > > Thanks for u info. Read document regarding transaction in javasoft.com > and i found out that what i done it in CMP is > wrong. > > BTW , can i know why i must set the fetching key as RequiresNew ?? That isn't a 'must', it just shortens the time that the seq

[JBoss-user] Bean Caching

2001-03-28 Thread Giulia Quadraccia
Hey I have been us ing jboss to deploy ejb for a simple shopping/portal system. Can someone please explain how the Bean Cache works and how can I increase it? It seems to randomly expand, contract with disregard to my entity queries. I am pulling out around 1500 records for the db. Including objec

Re: [JBoss-user] Explicit commit and rollback in EJB

2001-03-28 Thread Russell
Hi Dan , Thanks for u info. Read document regarding transaction in javasoft.com and i found out that what i done it in CMP is wrong. BTW , can i know why i must set the fetching key as RequiresNew ?? Thanks wt. Dan Christopherson wrote: > > Hi, Ricky! > You can do explicate commit and

Re: [JBoss-user] Client class files dont compile on linux

2001-03-28 Thread Tom Cook
On Thu, 29 Mar 2001, Yasir wrote: > I am stumped by a serious newbie dilemma. > > Im trying to code my first EJB's and deploy them on JBOSS. All i > really want to do is to be able to see how EJB's work and get the hang > of it. So, i started coding the tutorials in the manuals and on the > web

Re: [JBoss-user] Start Up Problem w/ JBoss

2001-03-28 Thread Scott M Stark
Your have to use the run.bat script to start JBoss. > Hello - I'm experiencing the following problem: > 1st, some env specs: > I'm using JBoss 2.1 on NT Server ... with JDK 1.3 > > I have not yet deployed any EJBs > When I try to start JBoss using the following command line: > java -jar run.jar

Re: [JBoss-user] JBoss on FreeBSD

2001-03-28 Thread Ivan Bilenjkij
yes, current jdk 1.2.x for freebsd is jdk-1.2.2-patchset10. for instructions on how to build it and where to get necessary sources go to: http://www.freebsd.org/java/dists/12.html cheers ivan marc fleury wrote: > |-Original Message- > |From: [EMAIL PROTECTED] > |[mailto:[EMAIL PROTEC

Re: [JBoss-user] Start Up Problem w/ JBoss

2001-03-28 Thread Tom Cook
On Wed, 28 Mar 2001, Louie Iacona wrote: > The server log file is attached to this email. > On the surface, this seems like a trivial env issue ... > It seems to not be able to find the > org.apache.crimson.jaxp.DocumentBuilderFactoryImpl > class - and clearly the j2ee.jar file is part of the C

[JBoss-user] Start Up Problem w/ JBoss

2001-03-28 Thread Louie Iacona
Hello - I'm experiencing the following problem: 1st, some env specs: I'm using JBoss 2.1 on NT Server ... with JDK 1.3 I have not yet deployed any EJBs When I try to start JBoss using the following command line: java -jar run.jar I get the following displayed in the ter

Re: [JBoss-user] ejbPassivate... Again...

2001-03-28 Thread Dan Christopherson
Do you have more details? what kind of bean? I'd swear I've seen the trace code I have in my entity ejbPassivate get called. What does your ejbPassivate do? On Wed, 28 Mar 2001, Fabio Silva wrote: > Hello all... > > Any news on the ejbPassivate issue? I browsed the code and everything > seemed

RE: [JBoss-user] ejbStore and finder method

2001-03-28 Thread marc fleury
|-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Todd Huss |Sent: Wednesday, March 28, 2001 5:42 PM |To: [EMAIL PROTECTED] |Subject: [JBoss-user] ejbStore and finder method | | |I have a BMP entity bean which I update and then stop using. I then use a

RE: [JBoss-user] JBoss on FreeBSD

2001-03-28 Thread marc fleury
|-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Ivan |Bilenjkij |Sent: Wednesday, March 28, 2001 5:45 PM |To: [EMAIL PROTECTED] |Subject: Re: [JBoss-user] JBoss on FreeBSD | | |I'm working on this. You'll need jdk12-beta which is available in ports |d

RE: [JBoss-user] JBoss on FreeBSD

2001-03-28 Thread marc fleury
there were succesful reports of running under 1.2.2 if I recall right, search the archives marc |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Daniel Fairs |Sent: Wednesday, March 28, 2001 3:06 PM |To: [EMAIL PROTECTED] |Subject: [JBoss-user] JBoss o

[JBoss-user] Container managed transaction debugging?

2001-03-28 Thread Todd Huss
Is it possible to turn on debug messages in jboss for container transactions so I can see when container managed transactions begin and are then commited? Thanks, Todd ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/

[JBoss-user] ejbStore and finder method

2001-03-28 Thread Todd Huss
I have a BMP entity bean which I update and then stop using. I then use a custom finder method on its respective home interface which should (with the update I just made) find it and a couple other entity beans. When I run the finder method though, the bean I just updated doesn't show up, only th

RE: [JBoss-user] Client class files dont compile on linux

2001-03-28 Thread Charles Miller
Yasir,   Try utilizing another means of compilation (an IDE/ I been playing with netbeans.org and found it excellent).  This type of process will hopefully help you narrow your unknowns.   I've done the same thing that you did, and was successful. -Original Message-From: [EMAIL

Re: [JBoss-user] SQLException

2001-03-28 Thread Ingo Bruell
Hi Greg, GP> Here is my jaws entry GP> GP> findCaseTypes GP> status = {0} GP> descr DESC GP> desc is a reserved keyword in oracle to show the tablestructure. Try DESCEND or DSC. I have know not the time to startuo oracle. so long Ingo Bruell --- <[EMAIL PROTECTED

[JBoss-user] Tomcat Classpath

2001-03-28 Thread Kirill Averianov
I am importing some packages in my JSP file which I intend to run with Tomcat. Those packages are not recognized. Where do I have to put my JAR files so Tomcat includes them into it's CLASSPATH ? Thanks a lot , Kirill.

Re: [JBoss-user] JBoss on FreeBSD

2001-03-28 Thread Ivan Bilenjkij
I'm working on this. You'll need jdk12-beta which is available in ports directory and you have to build it yourself since sun jdk sources cannot be distributed freely (you'll have to agree on some legal stuff before you can get it from sun). Once you've got jdk1.2 installed, jboss should work fine

Re: [JBoss-user] Classpath error in Zip Download

2001-03-28 Thread Scott M Stark
The run.jar archive is not an executable jar any longer because this makes it impossible to swap out which xml parser is being used via JAXP. - Original Message - From: "Tim Sawlor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 8:18 AM Subject: [JBoss-user]

Re: [JBoss-user] Classpath error in Zip Download

2001-03-28 Thread Dan Christopherson
JBoss is really meant to be launched via the run.bat or run.sh scripts (For better or worse...) On Wed, 28 Mar 2001, Tim Sawlor wrote: > Hey, > > I just wanted to let you know I downloaded the jboss-2.1.zip file today, > and tried to start it up, and I discovered that the ../lib/crimson.jar > f

[JBoss-user] Client hangs up while doing JNDI lookup

2001-03-28 Thread Steven Webster
> > informations needed : > 1 - are your client and server running on the same machine > 2 - give your classpath > 3 - Could you give the snippet of your initializing client code > > /Philippe > I also experienced a great deal of problems with hanging during JNDI lookupturned out to be a

[JBoss-user] Classpath error in Zip Download

2001-03-28 Thread Tim Sawlor
Hey, I just wanted to let you know I downloaded the jboss-2.1.zip file today, and tried to start it up, and I discovered that the ../lib/crimson.jar file needed to be added to the manifest in the bin/run.jar file. I was getting a ClassNotFoundException: org.apache.crimson.jaxp.DocumentBuilderFa

RE: [JBoss-user] Client class files dont compile on linux

2001-03-28 Thread Kevin Meldorf (NBK)
oh classpath and compiling problems: Many a day spent pulling out my hair... 1. compile the client at the root of your package directory. if your files are in com.whatever.foo, make sure that your client sits above "com" and also make sure that you have an import for your class files.

[JBoss-user] JBoss on FreeBSD

2001-03-28 Thread Daniel Fairs
Hi, Has anyone had any luck getting JBoss together with the Jakarta project bits and pieces (specifically Tomcat) going? I'm currently using the Linux jdk1.3 under Linux binary emulation, and things just seem to stop after a few seconds... Anyone had any experience with this combo? Or should I j

[JBoss-user] MS SQL7 w/ Atinav aveConnect JDBC

2001-03-28 Thread Brenton House
I am using this with Atinav aveConnect JDBC Drivers: org.opentools.minerva.jdbc.xa.wrapper.XADataSourceImp l SQLServerPool2 jdbc:AvenirDriver://SERVER:1433/DATABASE user=username; password=password; serverVersion=Sql7 I know the driver is loaded because I have this message: [J

[JBoss-user] Client class files dont compile on linux

2001-03-28 Thread Yasir
I am stumped by a serious newbie dilemma.   Im trying to code my first EJB's and deploy them on JBOSS. All i really want to do is to be able to see how EJB's work and get the hang of it. So, i started coding the tutorials in the manuals and on the web.   In the JBOSS manual example, when i

Re: [JBoss-user] How to do a lookup to an EJB from java class loaded in the JVM of an Oracle 8i ?

2001-03-28 Thread Peter Routtier-Wone
Subject: [JBoss-user] How to do a lookup to an EJB from java class loaded in the JVM of an Oracle 8i ? Same way you do from a client workstation... make sure it can see the relevant jar files and get the initial context using JNDI. All EJB containers are basically big fancy RMI servers. It's all

RE: [JBoss-user] ejbPassivate... Again...

2001-03-28 Thread Bordet, Simone
Hey, > Hello all... > > Any news on the ejbPassivate issue? I browsed the code and everything > seemed ok... Looks like a deeper bug... > Anyone had the same problem? It's strange that with so many people, I > only seen one or two posts on this issue... For me it works. Can you post a simple e

[JBoss-user] Q: jBoss & Jetty Package

2001-03-28 Thread Day, Jem BGI WAC
Guys, Do you intend to update the "jBoss & Jetty" combined distribution for 2.1. The download page says that the standalone & tomcat versions were produced on Mar 26th but the jetty version is from Jan 28th. Great stuff - keep up the good work. Jem.. _

Re: [JBoss-user] CMP Inheritance .... PLEASE Help

2001-03-28 Thread Dan Christopherson
OK, I've got comments below trying to explain why your implementation is giving you problems. What it amounts to, though, is you're doing more work than you really need to and probably making the database do more work than it needs to. First, as a fair warning, there are problems with inheritence

[JBoss-user] ejbPassivate... Again...

2001-03-28 Thread Fabio Silva
Hello all... Any news on the ejbPassivate issue? I browsed the code and everything seemed ok... Looks like a deeper bug... Anyone had the same problem? It's strange that with so many people, I only seen one or two posts on this issue... Thanks Fabio _

[JBoss-user] How to do a lookup to an EJB from java class loaded in the JVM ofan Oracle 8i ?

2001-03-28 Thread Arkady Kundel
Hi all! We are trying to create a client that is a java class loaded in the JVM of an Oracle 8i (8.1.6) database. This client class needs to do a lookup on a stateless session bean in the jBoss EJB container. I have no idea how to achieve this. If anyone has done something like this successfull

Re: [JBoss-user] CMP Inheritance .... PLEASE Help

2001-03-28 Thread Bill Burke
You can't rely on inheritance at all with CMP. For each entity bean, even if they inherit from one another, you have to declare each CMP field as Chris said in each of the jaws.xml files for each bean. This is because JAWS creates the SQL commands from XML not from the class itself. Bill Ki

Re: [jBoss-User] Multi-processor machine

2001-03-28 Thread Dan Christopherson
This depends more on your Java VM than anything. For what it's worth, with Sun's 1.3 JDK on Linux (using native threads) it seams to parrellelize pretty well. On Wed, 28 Mar 2001, Tim Yates wrote: > Hi :-) > > Simple one... > > We have a multiprocessor machine, which we are running JBoss and O

Re'f. : [JBoss-user] Client hangs up while doing JNDI lookup

2001-03-28 Thread Philippe GTLYA-NTIC-PETIT
informations needed : 1 - are your client and server running on the same machine 2 - give your classpath 3 - Could you give the snippet of your initializing client code /Philippe [EMAIL PROTECTED]%internet le 28/03/2001 16:48:36 Veuillez répondre à [EMAIL PROTECTED]%internet@WTFR Pour : [EM

Re: [JBoss-user] Explicit commit and rollback in EJB

2001-03-28 Thread Dan Christopherson
Hi, Ricky! You can do explicate commit and rollback, but not the way you're doing it. What you need to do is take a look at using Bean Managed Transactions, rather than the default container managed. This lets you do commit/rollback at the transaction level. You could also look at putting your ke

Fw: [jBoss-User] Connection Pool

2001-03-28 Thread Guy Rouillier
To the original appender: the Oracle XA implementation is the problem. Use minerva. When I tried the Oracle one, I encountered fatal errors. Simply switching to minerva fixed it. > - Original Message - > From: "Tim Yates" <[EMAIL PROTECTED]> > To: "JBoss-User" <[EMAIL PROTECTED]> > Sen

[JBoss-user] How to do a lookup to an EJB from java class loaded in the JVM ofan Oracle 8i ?

2001-03-28 Thread Arkady Kundel
We are trying to create a client that is a java class loaded in the JVM of an Oracle 8i (8.1.6) database. This client class needs on a stateless session bean in the jBoss EJB container. I have no idea how to achieve this. If anyone has done something like this successfully, I would be _extremely_

Re: [JBoss-user] BMP entity beans and MS SQL Server 7 ??

2001-03-28 Thread Peter Routtier-Wone
> By your criteria - i.e. a need to function consistently across all [or at > least multiple database] platforms - Interbase is just another proprietary > DB platform. "Open Source" does not equal "not proprietary" when we are > talking about SQL dialects. True. But less of a problem in the conte

[JBoss-user] Client hangs up while doing JNDI lookup

2001-03-28 Thread Deepak Hathwar
Hi: Hope some one can point me in the right direction. I am using jboss-tomcat-2.1-beta with jdk1.3.0_02 on Mandrake linux 7.2. I have an entity bean called as SoftwareOps with its JNDI name specified in jboss.xml file as asccs/SoftwareOps. I am setting the properties for the initial Context usi

RE: [JBoss-user] Apache integration - why?

2001-03-28 Thread Simphoukham, Southin
The reason behind using the JBoss-Tomcat-Apache integration would be the speed. -Original Message- From: Steve Slatcher [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 7:02 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Apache integration - why? I think there is a misun

RE: [JBoss-user] Apache integration - why?

2001-03-28 Thread Micheal J
Performance usually. The JBoss-Tomcat inVM optimization (which is the only true integration) in the Apache/Tomcat/JBoss package, substantially reducs the overhead of calling out to JBoss from your JSP/Servlet. Maybe also robustness if you use a "cluster" of JBoss-Tomcat inVM instances (each in a

RE: [JBoss-user] CMP Inheritance .... PLEASE Help

2001-03-28 Thread Kimpton,C (Chris)
Hi, > -Original Message- > From: ivanhoe Abrahams [mailto:[EMAIL PROTECTED]] > Here is a short decription of some of my Entities. > > ACTOR-> SuperClass > > PERSON -> extends Actor > > Teacher-> extends Person > > My problem is that on the client side I have a reference

Re: [jBoss-User] Multi-processor machine

2001-03-28 Thread Peter_Cetinski
If your VM does, JBoss does. "Tim Yates" <[EMAIL PROTECTED]>@lists.sourceforge.net on 03/28/2001 07:45:55 AM Please respond to [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> cc: Subject: [jBoss-User] Multi-processor machine Hi :-) Simple one... We have a m

Re: [JBoss-user] Apache integration - why?

2001-03-28 Thread Steve Slatcher
I think there is a misunderstanding here. I meant "Why should I use JBoss-Tomcat-Apache integration as opposed to Apache/Tomcat talking to JBoss?" - Original Message - From: "Peter Routtier-Wone" <[EMAIL PROTECTED]> To: "JBoss" <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 11:26

RE: [JBoss-user] BMP entity beans and MS SQL Server 7 ??

2001-03-28 Thread Micheal J
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Peter > Routtier-Wone > Sent: 28 March 2001 11:59 > To: JBoss > Subject: Re: [JBoss-user] BMP entity beans and MS SQL Server 7 ?? > > > > Interbase is cheaper and it's open source. That's all. > > No, i

[JBoss-user] Client in JRE1.2.2 -> jBoss 2.1 in JRE1.3?

2001-03-28 Thread jK.MkIII
Hello, Have been trying to figure out how to make client that uses JRE 1.2.2 to connect to jBoss that uses JRE1.3 ..or at least I think that is what is giving me error. I did what found from document, for bean set up jboss.xml in META-INF directory saying that BeanA jdk1

[jBoss-User] Multi-processor machine

2001-03-28 Thread Tim Yates
Hi :-) Simple one... We have a multiprocessor machine, which we are running JBoss and Oracle 8i on. Does jBoss make use of the multiple processors? If not, is it possible to do so? Thanks in advance, Tim Yates ___ JBoss-user mailing list [EMAIL PRO

[JBoss-user] problem calling stored procs using pooled connection in oracle

2001-03-28 Thread chandra poluru
hi iam using oracle8i as backend database. i created pooled connection "OracleDb" in jboss2.1 changes in jcml:      OracleDb   oracle.jdbc.xa.client.OracleXADataSource      jdbc:oracle:thin:@b2bdevlop:1521:b2b   120   temp   temp   10   false   false   false   true   12  

Re: [JBoss-user] configuring logging in JBoss

2001-03-28 Thread Wei Jiang
Try SuperLogging from www.acelet.com. The next release (in a coulple of days) will be free for open source (Jonas, jboss and J2ee-ri). Try SuperLogging of Super from www.acelet.com. SuperLogging is a full-featured logging tool: * It is a centralized logging, guaranteed tobe chronolotical.

RE: [JBoss-user] configuring logging in JBoss

2001-03-28 Thread Wei Jiang
Try SuperLogging of Super from www.acelet.com. SuperLogging is a full-featured logging tool: * It is a centralized logging, guaranteed tobe chronolotical. It supports distributed computing and works well in any clustering environment. all log messages are recorded in one central plac

Re: [JBoss-user] JBOSS MQ: How to create a connectionFactory ?

2001-03-28 Thread Oleg Nitz
joel cordonnier wrote: > I'm a newbie with JMS and MQ and i try to run the > samples that are coming with JBOSSMQ (the sames a SUN > RI). > But I have to create a Queue - or Topics > ConnectionFactory. HOW TO ? See src/examples in the CVS module "jbossmq". There are examples for Queue, Topics and

[JBoss-user] DOM version problems

2001-03-28 Thread Luigi Giavazzi
Hello guys, we are using JBoss2.1 to develop an EJB based application that uses in an intensive way XML/XSL/DOM stuff. We are using an XML library based on Apache XERCES version 1.2.3. This library contains Xerces parser and last DOM implementation. We noticed conflicts with DOM interfaces provi

[JBoss-user] CMP Inheritance .... PLEASE Help

2001-03-28 Thread ivanhoe Abrahams
Hi all I am busy writing a system which will be using a fair amount of Entity inheritance. I gathered from previous messages that this is possible in JBoss. Here is a short decription of some of my Entities. ACTOR-> SuperClass - REMOTE = Actor extends EJBObject HOME

Re: [JBoss-user] BMP entity beans and MS SQL Server 7 ??

2001-03-28 Thread Peter Routtier-Wone
> Interbase is cheaper and it's open source. That's all. No, it isn't all. It's far from all. To avoid tying oneself to a proprietary platform such as Oracle or Microsoft SQL Server or any other database server one must contain oneself to core ANSI SQL such as can be relied on to function consis

[JBoss-user] JBOSS MQ: How to create a connectionFactory ?

2001-03-28 Thread joel cordonnier
Hi! I'm a newbie with JMS and MQ and i try to run the samples that are coming with JBOSSMQ (the sames a SUN RI). But I have to create a Queue - or Topics ConnectionFactory. HOW TO ? Thanks Joel ___ Do You Yahoo!? -- Pour dialoguer en direc

[JBoss-user] ClassCastException

2001-03-28 Thread Hajo Hindriks
Hi everybody, there were quite a lot of mails about how to access a datasource from a connection pool, but I am still unable to make it work. I use jboss2.1 and Interbase together with Interclient2. I made these entries in jboss.jcml: InterBaseDB org.opentools.minerva.jdbc.xa.wrapper.

Re: [JBoss-user] Apache integration - why?

2001-03-28 Thread Peter Routtier-Wone
> What is all this about JBoss-Tomcat-Apache integration? I have seen a > lot about problems, and how to do it, but what does it achieve? How would Stop thinking web pages and start thinking of Apache in terms of a high-performance resource dispenser. JSP (which is the server-side part of the p

Re: [JBoss-user] deploying an .ear

2001-03-28 Thread Patrick Buchinger
Victor Lan wrote: > Funny nobody responded to my mail on the exact same problem last week :( > I guess my subject line was too specific. > > Anyway, this seems to be a problem of ver 2.1. I reverted back to > 2.0_FINAL and it worked. > > Victor ok, now i'm sure that it is a jBoss 2.1 issu

[JBoss-user] Problems with CD Example and CMP

2001-03-28 Thread Steve Shier
I'm trying to get the CD example working to test CMP (http://www.jboss.org/documentation/jboss_cmp_trail_index.html) but keep getting an error: 1. when I run the command: java -classpath %CLASSPATH%;..\..\dist\client\jbosssx-client.jar;..\..\dist\lib\ext\ejb .jar;.;..\..\dist\client\jnp-cli

[JBoss-user] ClassCastException when trying to access Datasource

2001-03-28 Thread Hajo Hindriks
Hi everybody, there were quite a lot of mails about how to access a datasource from a connection pool, but I am still unable to make it work. I use jboss2.1 and Interbase together with Interclient2. I made the entries in jboss.jcml and get the following log-entry: [InterBaseDB] XA Connection

[JBoss-user] Directory deployment - how?

2001-03-28 Thread Steve Slatcher
I have seen "directory deployment" mentioned a few times on this list, but I haven't found any definitive mention of which versions this works in, and where you need to put the directories and files. Could anyone help me out here, please? Steve Slatcher

[JBoss-user] Apache integration - why?

2001-03-28 Thread Steve Slatcher
What is all this about JBoss-Tomcat-Apache integration? I have seen a lot about problems, and how to do it, but what does it achieve? How would the average webmaster react to the idea that to run my application he would need to integrate his Apache with JBoss-Tomcat? Steve Slatcher __

Re: [JBoss-user] Réf. : [JBoss-user] Oracle Statement Caching and Minerva

2001-03-28 Thread Toby Allsopp
Thomas Gennburg/FRAN/Carrefour wrote: > Hello, > > Minerva is a part of the JBossCX Project > (http://www.jboss.org/business/jboss-jbosscx.html) so That's not quite correct. Minerva is a separate project, belonging to Aaron Mulder. The source lives under jbosscx just so it's available somewhere