[JBoss-user] JBOSS and Oracle

2001-05-09 Thread Artur Jonak
Hi,   For a few days I've been using JBoss 2.2 with Oracle 8i. I've got a small application with some EJBs deployed. The entity EJBs are BMP with CMT. My problem is that I can't write CLOB data to the Oracle table. Minerva throws exception (transaction rolled back) when I try to create Wri

[JBoss-user] Re: Fw: Castor

2001-05-09 Thread Ralf Purnhagen
Hi, do these patches allow to run multiple instances of Castor in the same JBoss instance? Also there was a problem with changing the mapping.xml. Because Castor is caching the Mapping in a static class, it was not possible to change mapping without restarting the whole VM. Ralf Vesco Claudio w

Re: [JBoss-user] (no subject)

2001-05-09 Thread Guy Rouillier
1) While the kind folks here go to great lengths to answer all questions, this list is really intended to help people use JBoss. To get some background on EJB technology in general, visit the Sun Java site (http://java.sun.com) and read some of the article describing EJBs and their benefits. He

Re: [JBoss-user] Getting wrong DataSource via JNDI

2001-05-09 Thread Guy Rouillier
Your pool is defined as OraclePool, but your ejb-jar.xml has oraclePool. Based on your definition in ejb-jar, the lookup in your bean should look like this (assuming you are correcting to match the name used in jboss.jcml): lookup("java:comp/env/jdbc/OraclePool") Your jboss.xml should contain th

Re: [JBoss-user] Sql Exception :Exhausted Resultset

2001-05-09 Thread Indika Fernando
OHH I am very sorry ,I am running out of my deadlines and thats why I was looking for some quick reply .. I am very sorry. INDI - Original Message - From: "danch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 10:20 PM Subject: Re: [JBoss-user] Sql Exceptio

Re: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread Ralph Jensen
In the EJB 1.1 Spec, section 9.2.3, there is a compatibility note which says: "EJB 1.0 allowed the ejbCreate method to throw the java.rmi.RemoteException to indicate a non-application exception. This practice is deprecated in EJB 1.1 -- an EJB 1.1 compliant enterprise bean should throw javax.ejb

RE: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread James Cook
But as you will notice, as your application grows, you will have beans communicating with other beans via their remote interfaces. These methods will have to throw RemoteException, and it snowballs from there. jim > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED

[JBoss-user] (no subject)

2001-05-09 Thread Johnson_Ng
___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] EJB question

2001-05-09 Thread Ralph Jensen
For all that it's worth - I certainly appreciate this jBoss unrelated discussion and the help I received. There is a lot of expertise bundled in this newsgroup. Does anybody know of groups where these kind of discussions are on topic? I've tried the SUN discussion forums but that wasn't exciting.

[JBoss-user] why find all throw exception

2001-05-09 Thread Steve Zhang
HI, all: I first used the HomeBean to findAll in the Table with a Character colom, but it throw the exception but when I change the Character with String, it seems fine. Any one can give some suggestion? Thanks a lot!! Best Wishes Steve Zhang Software Developer http://www.ensemble-systems.com

[JBoss-user] JBuilder 4.0 ServiceNotFoundException (cannot startup debug session)

2001-05-09 Thread John P. Coffey
Hello I'm trying to debug using JBuilder with JBoss, however if you see below I get a javax.management.ServiceNotFoundException: The specified URL is null error message. Does anyone have an idea why this is happening, I have looked at all the posts on JBuilder 4 and followed them withoug success

[JBoss-user] Postgres woes

2001-05-09 Thread Jim Downing
Hi, I'm trying to port our J2EE app from NT/Oracle to Debian/Postgresql. The postgres datasource is connecting fine on startup, but when any ejbCreate method is called (i.e. an INSERT is called) postgresql throws this: java.lang.reflect.UndeclaredThrowableException: javax.transaction.RollbackExc

[JBoss-user] JBoss Future

2001-05-09 Thread Ivan
Hello, Does anyone know if JBoss will in the future support EJB 2.0 CMP (in addition to MVCSoft)? If so is there an estimated time of release. It seems this is a much need feature to this already excellent product. Any comments or information much appreciated. Ivan _

[JBoss-user] DefaultDS connection timeout in startup

2001-05-09 Thread The Allisons
Hi All, As the log indicates, Jboss2.2.1+tomcat3.2.1 on Linux (2.2.17 kernel) (Debian) I'm not familiar enough with JBoss to know why I'm getting a connection timeout on DefaultDS. Should I be setting something different in jboss.jcml? I've enclosed the DefaultDS section of jboss.jcml

RE: [JBoss-user] Is there a step by step guide to porting apps from iPlanet Applic ation Server to JBoss?

2001-05-09 Thread Samuel Bucholtz
Thanks, It is actually pretty simple. There are only a few beans and no entity beans at all. I just keep getting the same error, and have no clue what it is trying to ask for. org.jboss.ejb.DeploymentException: expected only one assembly-descriptor tag Samuel -Original Message- From:

Re: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread danch
Kar YEOW wrote: > Correct me if I am wrong. Declaring of 'throws RemoteException' is not > needed in the Bean class but it is still required in the Remote class (cause > they are Remote). However, if you want you Bean class to 'implements' you > Remote class then you will still need to declare

Re: [JBoss-user] Is there a step by step guide to porting apps from iPlanet Applic ation Server to JBoss?

2001-05-09 Thread danch
Samuel Bucholtz wrote: > Hi, > > I am trying out porting a site from iPlanet to JBoss/Tomcat/Apache. > Currently, I ran into a stumbling block creating the JBoss XML Descriptor. > 1. There is almost no documentation on the Descriptor. take a look at jboss.dtd You might need to grab that out of

[JBoss-user] Is there a step by step guide to porting apps from iPlanet Application Server to JBoss?

2001-05-09 Thread Samuel Bucholtz
Hi, I am trying out porting a site from iPlanet to JBoss/Tomcat/Apache. Currently, I ran into a stumbling block creating the JBoss XML Descriptor. 1. There is almost no documentation on the Descriptor. 2. The iPlanet descriptor we have does a lot more than just map jndi names. Is there an easy wa

Re: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread Kar YEOW
Correct me if I am wrong. Declaring of 'throws RemoteException' is not needed in the Bean class but it is still required in the Remote class (cause they are Remote). However, if you want you Bean class to 'implements' you Remote class then you will still need to declare the exception. Kar -

Re: [JBoss-user] entity bean properties set to null values

2001-05-09 Thread Victor Langelo
Rafael, You'll want to use commit options B or C for your entity beans. See the EJB 1.1 spec section 9.1.10 for definitions. You define the commit option using the element in jboss.xml. --Victor Rafael Alves Chaves wrote: > > If I have a legacy application changing the database concurrently

[JBoss-user] Re: MySQL and Minerva

2001-05-09 Thread Chris Rossi
Ok, I figured it out. Sorry about that. The problem had to do with mysql permissions. I'm sure everybody already knows this, but it would be nice if Minerva could percolate up any SQL exceptions it might get when trying to connect to a database. It appears to be catching the SQLException and t

[JBoss-user] Catalina and Jboss2.2.1 InitialContext error

2001-05-09 Thread John Menke
This error is produced when I try to get an initial JNDI context. The error is: javax.naming.CommunicationException[Root exeption is java.rmi.ServerException: RemoteException occured in server thread; nested exception is java.rmi.UnmarshalException: error unmarshalling arguments; nested exceptio

Re: [JBoss-user] jBoss-2.2.1_Tomcat-3.2.1 rlease startup issue - WAR starts B4 EJBs

2001-05-09 Thread Scott M Stark
There is already a bug in sourceforge about this behavior. http://sourceforge.net/tracker/index.php?func=detail&aid=421956&group_id=22866&atid=376685 - Original Message - From: "Jim Archer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 12:43 PM Subject: [JBoss

Re: [JBoss-user] catching all runtime exceptions in one place ??

2001-05-09 Thread Scott M Stark
My suggestion would be to use a custom log4j appender that only looked for runtime exceptions and routed them as required. There isn't one entry point into JBoss unless your talking just about EJB access, in which case you could replace the LogInterceptor, there isn't one point to collect all Runt

[JBoss-user] Blocked trying to connect to Cloudscape

2001-05-09 Thread jcyip
Thanks for the people who tried to help but in the end the cause was something else entirely. After I sent the message, I realised that I hadn't started Cloudscape... duh! So obviously I can't connect to it. Had some other problems with missing config files since I was porting something that us

Re: [JBoss-user] seperate context

2001-05-09 Thread Scott M Stark
Are there no jars in the classpath or lib/ext directory that are used by the beans? Are there any exception being generated? - Original Message - From: "Ferguson, Doug" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 11:36 AM Subject: RE: [JBoss-user] seperate c

Re: [JBoss-user] entity bean properties set to null values

2001-05-09 Thread Rafael Alves Chaves
> The ejbCreate method or postCreate of Documento must insure that all the beans > properties are set. Thanks, Victor, this was my fault. > There is no need for the container to call ejbFindByPrimaryKey if the bean is > already in the container's cache. If I have a legacy application changin

RE: [JBoss-user] seperate context

2001-05-09 Thread QuKN
sounds like jndi name conflict? "Ferguson, Doug"

Re: [JBoss-user] EJB question

2001-05-09 Thread Jim Archer
--On Tuesday, May 08, 2001 11:17 AM +0800 Ralph Jensen <[EMAIL PROTECTED]> wrote: > As danch said: ejbCreate needs to know it, because it must return it, > according to spec. What actually happens, if it doesn't? Beats me... In EJB 2.0, we return null, although I think that changed in the la

[JBoss-user] jBoss-2.2.1_Tomcat-3.2.1 rlease startup issue - WAR starts B4 EJBs

2001-05-09 Thread Jim Archer
Hi All... I am using the release of the jBoss/Tomcat bundle and it works very nicely. One thing I have noticed during my testing is that when I start the server and deploy my EAR, the servlets seem to deploy and start to operate before the EJBs are bound in JNDI. Since the users are numerous a

[JBoss-user] Jbossmq && turbine Urgent!!!!

2001-05-09 Thread Rettig Christoph
Hi! I have successfully written a jms-system using jbossmq and wanted to embed this into the turbine framework (using catalina) but the same code doesn't work anymore - I don't get an Initial-context The code to get the context is as follows Properties env = new Properties();

[JBoss-user] catching all runtime exceptions in one place ??

2001-05-09 Thread Jim Archer
Hi All... I have been beating up jBoss pretty hard and in general things go well. I did find that Hypersonic tends to run out of memory (I really have to switch to PostgreSQL) eventually and throws an Out of Memory Exception. Well, thats fine. However, it made me wonder if it is possible to h

RE: [JBoss-user] Server Startup problem

2001-05-09 Thread menonv
Can you send me the jboss.jcml bit that you modified to add this datasource? Also, can you start the server without this datasource i.e. commeted out? Vinay > -Original Message- > From: Hari Shanker Ravindran [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, May 09, 2001 10:32 AM > To: [EMA

RE: [JBoss-user] seperate context

2001-05-09 Thread Ferguson, Doug
Just funny that way I guess -Original Message- From: Steve Swing [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 2:08 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] seperate context - Original Message - From: "Ferguson, Doug" <[EMAIL PROTECTED]> To: <[EMAIL P

[JBoss-user] Re: [JBoss 2.2.1] Blocked trying to connect to Cloudscape (jcyip@thoughtworks.COM)

2001-05-09 Thread Shriver, Ryan
> I'm trying to add a Cloudscape data source but the start up gets stuck > trying to get a connection to Cloudscape. Is Cloudscape running on port 1098? By default it runs on 1099, the same port JNDI on JBoss runs on. Two services on one port == bad news. Make a copy of j2sdkee1.2.1\bin\clouds

Re: [JBoss-user] Getting wrong DataSource via JNDI

2001-05-09 Thread awc
Hi Jonathan, How about add this to jboss.xml. Replace with you parameters. PostgreSQL java:/jdbc/PostgresDB anil "Jonathan C. Keatley" wrote: > I've set up jBoss 2.2.1, and have installed the Oracle > 8.1.6 thin driver and one Minerva pool of Or

Re: [JBoss-user] DataSource problems solved.

2001-05-09 Thread Toby Allsopp
On Wed, May 09, 2001 at 09:42:20AM -0600, Dave King wrote: > Toby, I can't document the future. Ok, fair enough. You wouldn't want to document it, anyway, just place some bets. > When it's changed then any sort of FAQ entry would need to be updated. If > there is something wrong with the exa

Re: [JBoss-user] Problems reading messages from a topic...

2001-05-09 Thread pra
On 9 Maj, Cecilie Aulesjord wrote: > Hi. > I'm trying to read messages from a topic. I've a publisher session bean that > publishes messages and the server-log confirms that these messages has been > set. Then I have a message driven bean that is deployed like this in the > ejb-jar.xml: > --

[JBoss-user] MySQL and Minerva

2001-05-09 Thread Chris Rossi
I am using: JBoss 2.2.1 Java 1.3 Linux 2.4.3 mm.mysql-2.0.4-bin.jar Hello, I too am trying to set up MySQL under JBoss. I've imitated pretty well the configurations posted in another recent thread. When I start JBoss it can't create the pool. Namely, minerva is producing a NullPoint

Re: [JBoss-user] [JBoss 2.2.1] Blocked trying to connect to Cloudscape

2001-05-09 Thread danch
[EMAIL PROTECTED] wrote: > > > Any ideas? > > > ="URL">jdbc:cloudscape:../conf/default/cloudscape use a fully qualified path name here? ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-use

[JBoss-user] Getting wrong DataSource via JNDI

2001-05-09 Thread Jonathan C. Keatley
I've set up jBoss 2.2.1, and have installed the Oracle 8.1.6 thin driver and one Minerva pool of Oracle connections, called OraclePool. The mbean descriptor for this pool looks like this: OraclePool org.opentools.minerva.jdbc.xa.wrapper.XADataSourceImpl jdbc:oracle:thin:@(d

Re: [JBoss-user] seperate context

2001-05-09 Thread Steve Swing
- Original Message - From: "Ferguson, Doug" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 12:37 pm Subject: [JBoss-user] seperate context > Or some way to prevent us from stepping on each others toes, other > than installing jboss on our local machines.

RE: [JBoss-user] seperate context

2001-05-09 Thread Ferguson, Doug
We are still investivating the issue. But what we see happen is. Developer A deploys bean A in a.jar. It works fine. Developer B deploys bean B in b.jar it works fine but breaks A. If a.jar is redeployed then A works again but B stops working. d. -Original Message- From: Scott M Stark [

Re: [JBoss-user] entity bean properties set to null values

2001-05-09 Thread Victor Langelo
The ejbCreate method or postCreate of Documento must insure that all the beans properties are set. There is no need for the container to call ejbFindByPrimaryKey if the bean is already in the container's cache. And if you're using commit option A the container will not call ejbLoad in your exampl

[JBoss-user] [JBoss 2.2.1] Blocked trying to connect to Cloudscape

2001-05-09 Thread jcyip
I'm trying to add a Cloudscape data source but the start up gets stuck trying to get a connection to Cloudscape. [Cloudscape] Starting [Hypersonic] Press [Ctrl]+[C] to abort [Cloudscape] XA Connection pool Cloudscape bound to java:/Cloudscape Looking at the server.log, the Cloudscape JDBC driver

[JBoss-user] entity bean properties set to null values

2001-05-09 Thread Rafael Alves Chaves
Hi, I'm having a strange problem with entity beans in JBoss. For debugging purposes, I have instrumented ALL callback and business methods to generate an output identifying the called method and, when useful, its arguments. Below is the trace generated after two different clients are execu

[JBoss-user] Corporate support for JBoss and TomCat

2001-05-09 Thread JOHN_COMPTON
The company I work for is considering moving away from IBM's WebSphere product line and implementing the use of TomCat and JBoss. However, the CIO and others are concerned about support for these 2 products, that support being in the form of help desk support and periodic updates that would be

[JBoss-user] (no subject)

2001-05-09 Thread Tripuroju, Nag
___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread Georg Rehfeld
Hi list, > Hi Toby, ... read it again CAREFULLY please: Sorry, sorry, I meant Norton. best regards Georg ___ ___ | + | |__Georg Rehfeld Woltmanstr. 12 20097 Hamburg |_|_\ |___ [EMAIL PROTECTED] +49 (40) 23 53 27 10 __

RE: [JBoss-user] Fw: Castor

2001-05-09 Thread Vesco Claudio
Hi! I submitted some patches to exolab implementing a jca interface for castor. If the patches are accepted then we can deploy and redeploy rar castor in jboss with jboss always up. Claudio. > -Original Message- > From: Marc Antoine Garrigue > [SMTP:[EMAIL PROTECTED]] > Sent: We

Re: [JBoss-user] seperate context

2001-05-09 Thread Scott M Stark
Define the nature of the collision so I can understand what you mean by jar isolation. - Original Message - From: "Ferguson, Doug" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 9:37 AM Subject: [JBoss-user] seperate context > Hey, > > I am one of 3 develope

Re: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread Georg Rehfeld
Hi Toby, > You're right. I should have looked up the EJB 1.1 spec, > but I was lazy. Since you called me on it, I looked > up the spec. ... (See section 12.3.7. ... Here is the quote from the spec, read it again CAREFULLY please: | 12.3.7 Support for deprecated use of java.rmi.RemoteException

Re: [JBoss-user] Server Startup problem

2001-05-09 Thread danch
Have you changed jboss.jcml or jboss.conf at any point? Hari Shanker Ravindran wrote: > hi, >I am getting the following error when i am starting my > Server > > > > [OracleDB] java.lang.IllegalStateException: Cannot start XA Connection > Pool; the > re is no TransactionManager in JNDI! >

Re: [JBoss-user] 100,000 CMP entity beans

2001-05-09 Thread danch
[EMAIL PROTECTED] wrote: >> Is this CMP or BMP? We're focusing on CMP performance in version 2.3. > > > CMP Hence the title of the message. Sorry to ask an unneeded question. > > >> How are the transactions written? Do you call multiple methods from a >> client, or are you using session

[JBoss-user] seperate context

2001-05-09 Thread Ferguson, Doug
Hey, I am one of 3 developers currently working together on a jboss project. We each are developing on our own piece of the project and sometimes updating utility classes that we all use. We we are testing these updates, we don't won't to distribute the code to each other so we each build our o

Re: [JBoss-user] +Apache +Tomcat +JBoss +MySQL +Linux

2001-05-09 Thread Todd Chaffee
Search the archives, I wrote a pretty detailed explanation of how to get Apache + Tomcat + Jboss to work.  If you search on "virtual hosts" you should find it.  Mysql is a separate issue.  I would do it this way: 1) Get jboss + tomcat working and verify it using localhost. 2) Add mysql to the mix

[JBoss-user] Fw: Castor

2001-05-09 Thread Marc Antoine Garrigue
  - Original Message - From: Marc Antoine Garrigue To: JBoss-User Sent: Wednesday, May 09, 2001 6:32 PM Subject: Castor Hi, As anyone experienced some stuff with castor in jboss? I'm especially interrested in the Entity stuffs. Could anybody send me some advices, examples or/and c

RE: [JBoss-user] EJB and applets : problem with RMI classloading

2001-05-09 Thread Vesco Claudio
Hi! I implemented a applet-web app-ejb app gateway which permits invoking ejbs from an applet (no SOAP :-) ) with only http:80 or https:443 requests. If you like I send you the files. Claudio > -Original Message- > From: Sacha Labourey [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, M

Re: [JBoss-user] Sql Exception :Exhausted Resultset

2001-05-09 Thread danch
That particular "idiot" has written much of the freely available application server you're using. He's also a very helpful person, in those cases where he's helping someone who wants to help themself. The real reason that people should use open source software (such as JBoss) is to take contro

Re: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread danch
Your bean implementation shouldn't throw RemoteException, your Home and Remote interfaces Must. Norton Lam wrote: > Toby, > > You're right. I should have looked up the EJB 1.1 spec, > but I was lazy. Since you called me on it, I looked > up the spec. > > The person in the forum was correct.

Re: [JBoss-user] CMP persistance after shutdown

2001-05-09 Thread danch
Georg Rehfeld wrote: > Hi Steve and Phil, > > Steve wrote: > >> The tag must be set to Required, RequiresNew, or >> Mandatory or JBoss won't persist your beans. ... > > > IMHO you are right. No opinion about it, that's the way it works. ___ JB

Re: [JBoss-user] CMP persistance after shutdown

2001-05-09 Thread danch
Georg's point is still true: the spec. is very clear that the behavior of entity beans outside of transactions is undefined and bean developers shouldn't count on it. Steve Magoun wrote: > There's still wiggle room there, and each app server that I've seen > behaves a bit differently. When you

Re: [JBoss-user] findByPrimaryKey(byte[] id) method signature pro blem

2001-05-09 Thread danch
BAS is a very nice, developer friendly implementation of the specs. Frankly, though, you're asking for trouble if you use BLOBs as your primary key! [EMAIL PROTECTED] wrote: >> My understanding is that you must use an Java Object with a >> parameterless contractor (ie no primitive type or arr

RE: [JBoss-user] DataSource problems solved.

2001-05-09 Thread Dave King
Toby, I can't document the future. When it's changed then any sort of FAQ entry would need to be updated. If there is something wrong with the example now, I'd love to change it and have it entered in the FAQ. A lot of people get stuck on this point and the current documentation assumes you k

Re: [JBoss-user] +Apache +Tomcat +JBoss +MySQL +Linux

2001-05-09 Thread danch
Apache won't server your application's ear file. If you want apache to server your static stuff (images, etc.) you'll need to create the directory for apache and share them out that way. Andrei wrote: > I have recently got this setup: +Apache +Tomcat +JBoss +MySQL +Linux > and I want to know

Re: [JBoss-user] Scaling an application with jBoss

2001-05-09 Thread danch
It's true that JBoss 2.2.x doesn't explicitely support clustering, but you should have no problem using load balancing routers or routing software in front of the JBoss/Tomcat servers, _if_ you design your application for it. Eric Lindauer wrote: > I don't think JBoss supports server clusteri

Re: [JBoss-user] +Apache +Tomcat +JBoss +MySQL +Linux

2001-05-09 Thread awc
Hi Andrei, I am not an expert on this. I have set up Postgresql+JBoss+Tomcat with security on linux. I guess you have to give more information on this and where you have been stuck. anil Andrei wrote: > I have recently got this setup: +Apache +Tomcat +JBoss +MySQL +Linux > and I want to know h

Re: [JBoss-user] Anyone know how to federate across multiple jnp ...

2001-05-09 Thread Scott M Stark
The only fix is to use the latest cvs version and make sure your jndi.properties includes both the org.jboss.naming and org.jnp.interfaces in the Context.URL_PKG_PREFIXES, for example: java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory java.naming.provider.url=jnp://serverhost:10

Re: [JBoss-user] mysql configuration

2001-05-09 Thread Todd Chaffee
Here's the relevant parts of my jboss.jcml: org.hsql.jdbcDriver,org.enhydra.instantdb.jdbc.id bDriver,org.gjt.mm.mysql.Driver EstoreDB org.opentools.minerva.jdbc.xa.wrapper.XADa taSourceImpl jdbc:mysql://localhost:3306/petstore 120 root 10 parallax1 false false false true 12 18

[JBoss-user] Why JBoss ruins if I deploy a bad jar file?

2001-05-09 Thread fmarchioni
Hello, I'm new to jBoss.I'm experiencing many problems with bean deploying. This is what happens:I deploy the basic "interest.jar" example (that comes with the documentation). Then I run the client. Ok. The bean works. Now the problems: I deploy another bean made by me ...let's say "collect.jar".

Re: [JBoss-user] Scaling an application with jBoss

2001-05-09 Thread Eric Lindauer
I don't think JBoss supports server clustering at this time ( though I'm new to JBoss myself ). - Original Message - From: "Roberto Casas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 10:47 AM Subject: [JBoss-user] Scaling an application with jBoss > Hi, I

[JBoss-user] (no subject)

2001-05-09 Thread ejrivas
   "Cuando el sonido deje de mover mis ideas, el sol se ocultará, las tinieblas por fin llegarán y mi respirar habrá perdido toda su energía y utilidad."  By DefKorn(Emilio Rivas)

RE: [JBoss-user] mysql configuration

2001-05-09 Thread Doyle, Steven
jboss.jcml see below 8083 1099 300 org.jboss.security.plugins.JaasSecurityManag er org.gjt.mm.mysql.Driver MySQLDS org.opentools.minerva.jdbc.xa.wrapper.XADataSourceImp l jd

[JBoss-user] +Apache +Tomcat +JBoss +MySQL +Linux

2001-05-09 Thread Andrei
I have recently got this setup: +Apache +Tomcat +JBoss +MySQL +Linux and I want to know how do I make apache serve my application .ear and what are the steps to do this. Please help!    

[JBoss-user] Problems reading messages from a topic...

2001-05-09 Thread Cecilie Aulesjord
Hi. I'm trying to read messages from a topic. I've a publisher session bean that publishes messages and the server-log confirms that these messages has been set. Then I have a message driven bean that is deployed like this in the ejb-jar.xml:

[JBoss-user] Scaling an application with jBoss

2001-05-09 Thread Roberto Casas
Hi, I'm new to JBoss and I'm going to develop an EJB application. I want to know how can I (if I can) balance the load of my app between 2 or more hosts running JBoss. Thanks in advance. Greetings. Roberto ___ JBoss-user mailing list [EMAIL PROTEC

RE: [JBoss-user] Sql Exception :Exhausted Resultset

2001-05-09 Thread Bordet, Simone
Indika, > HEHE. SO CLEVER ...then why should I post this in the > Mailing list. > IDIOT Not so polite, IMHO. You got your quick reply by Toby, what do you need more ? Oohhh, wait... You want *him* to solve your problems ? But you just asked for a quick reply, not for help. Simon > - O

[JBoss-user] (no subject)

2001-05-09 Thread majid nakit
Hi, I am new to ejb and jboss, this is my first day , I just downloaded jboss in windows2000, please I will be happy to get advices from you who have experience. But before I will start: 1) I am using java, jsp servlet, taglibs, why do I need ejb 2) I like the online manual documentation (http:/

[JBoss-user] mysql configuration

2001-05-09 Thread Jacob Andresen
Anybody have some configuration files for jboss and mysql that they would like to share?   thanx in advance, Jacob Andresen  

Re: [JBoss-user] Anyone know how to federate across multiple jnp ...

2001-05-09 Thread Eric Lindauer
Hi Scott, I got the same exception as Guy Roulier below. I'm having trouble following the conversation you seem to have had with him about how to fix this problem... Would you mind repeating the fix to me? I have not done any security policy configuration. Using jnp:// does not work either con

Re: [JBoss-user] Sql Exception :Exhausted Resultset

2001-05-09 Thread Indika Fernando
HEHE. SO CLEVER ...then why should I post this in the Mailing list. IDIOT - Original Message - From: "Toby Allsopp" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 9:49 AM Subject: Re: [JBoss-user] Sql Exception :Exhausted Resultset > On Wed, May 09, 2001 at

RE: [JBoss-user] choosing a database

2001-05-09 Thread Frank Thiemonge (NBK)
Yes, http://www.mysql.com/downloads/os-win32.html -Original Message- From: Hari Yellina [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 7:12 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] choosing a database will mysql work on win 98 regards Hari Yellina. - Origina

Re: [JBoss-user] EJB 2.0 home methods for Entity EJBs

2001-05-09 Thread Martin Renner
Hi. I asked this question because I already tried to use a home method, but then I got an error message during the deployment. Now, I tried it again and it works... Strange world :-) Martin > Yes it does > > >> In some JBoss documentation I was reading about EJB 2.0 support, >> but I cou

RE: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread Norton Lam
Toby, You're right. I should have looked up the EJB 1.1 spec, but I was lazy. Since you called me on it, I looked up the spec. The person in the forum was correct. The "throws RemoteException" clause for certain methods are indeed deprecated. The methods instead require that EJBException be

RE: [JBoss-user] CMP persistance after shutdown

2001-05-09 Thread Steve Magoun
There's still wiggle room there, and each app server that I've seen behaves a bit differently. When you see the words "typically" and "should" in the same sentence, I guarantee that people (app server developers, here) will do what you suggest they not do. I agree with the JBoss interpretation, bu

RE: [JBoss-user] Obscure issue (bug?) with CMP using column mapping

2001-05-09 Thread David Esposito
I tried it using Commit A, B, and C and it seemed to exhibit the same behavior using all 3 ... (the workaround didn't break using Commit C ...) dunno if thath helps ... (I normally use Commit B) .. -Dave > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Beha

RE: [JBoss-user] EJB 2.0 home methods for Entity EJBs

2001-05-09 Thread Vincent Harcq
Yes it does > In some JBoss documentation I was reading about EJB 2.0 support, > but I couldn't find > any details (except of an EJB 2.0 CMP plugin), so I want to ask > my question here: > > Does JBoss support EJB 2.0 home methods for Entity EJBs? > > > Martin > Vincent _

RE: [JBoss-user] Postgresql data source null pointer exception

2001-05-09 Thread David Esposito
The only other thing I can suggest is to move the postgres JAR into the lib directory and explicitly add it to your classpath in your run.bat (or run.sh) ... (I know, it says that the driver successfully loaded when JBOSS is starting up, but for some reason, a coworker of mine couldn't get it to w

Re: [JBoss-user] choosing a database

2001-05-09 Thread Hari Yellina
will mysql work on win 98 regards Hari Yellina. - Original Message - From: "Tbone" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 11, 2001 9:16 PM Subject: Re: [JBoss-user] choosing a database > Hi, > > try mysql > http://www.mysql.com > > for al I now it's the fastest da

RE: [JBoss-user] findByPrimaryKey(byte[] id) method signature problem

2001-05-09 Thread RRokytskyy
> My understanding is that you must use an Java Object with a > parameterless contractor (ie no primitive type or array :( ). That was my understanding too. But BAS 4.5 seems to be more "intelligent" than I expected: it works also with the "normal" findByPrimaryKey(Object key) method too. Howeve

Re: [JBoss-user] choosing a database

2001-05-09 Thread Tbone
Hi, try mysql http://www.mysql.com for al I now it's the fastest database around Greetz-tbone - Original Message - From: "Sacha Labourey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 03, 2001 10:14 AM Subject: RE: [JBoss-user] choosing a database > Hello, > > >

[JBoss-user] EJB 2.0 home methods for Entity EJBs

2001-05-09 Thread Martin Renner
Hi. In some JBoss documentation I was reading about EJB 2.0 support, but I couldn't find any details (except of an EJB 2.0 CMP plugin), so I want to ask my question here: Does JBoss support EJB 2.0 home methods for Entity EJBs? Martin ___ JBoss-us

[JBoss-user] Server Startup problem

2001-05-09 Thread Hari Shanker Ravindran
hi, I am getting the following error when i am starting my Server [OracleDB] java.lang.IllegalStateException: Cannot start XA Connection Pool; the re is no TransactionManager in JNDI! [OracleDB] at org.jboss.jdbc.XADataSourceLoader.startService(XADataSourceLo ader.java:320) [OracleDB

[JBoss-user] Server Startup problem

2001-05-09 Thread Hari Shanker Ravindran
hi, I am getting the following error when i am starting my Server [OracleDB] java.lang.IllegalStateException: Cannot start XA Connection Pool; the re is no TransactionManager in JNDI! [OracleDB] at org.jboss.jdbc.XADataSourceLoader.startService(XADataSourceLo ader.java:320) [OracleDB

Re: [JBoss-user] Is it Possible

2001-05-09 Thread Sachin S. Khanna
Ralph, thanks for the info. But i'm not able to deploy myejb.jar even otherwise. Any work around or the only way out would be to upgrade to jdk 1.3 version. Have a nice day. With regards, Sachin S. Khanna http://www.emailanorder.com - Original Message - From: Ralph Jensen <[EMAIL PROTECTE

RE: [JBoss-user] EJB call other EJB

2001-05-09 Thread Robert Nicholson
Have you separated out your interfaces home and remote into a separate jar and declared the class path as a dependency in the manifest for the jar files? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Guy > Rouillier > Sent: Monday, May 07, 2001 9:

[JBoss-user] Difficulties with JDB

2001-05-09 Thread Matt Davies
Hi Guys (again ;-)), I am running JDK1.3.0_02 under Solaris 5.8 and I am having difficulty running JDB against jboss. I use JDB as I use text editors and don't have jbuilder or vaj. Just to be sure, I downloaded and reinstalled the JDK with the lastest version and I asked the system administra