RE: [JBoss-user] Rollback Transaction

2003-01-16 Thread Ivan Bolcina
Title: RE: [JBoss-user] Rollback Transaction CreateException is application exception. They don't rollback transactions. You have to setRollbackOnly() on context. Container rolls back transaction only in case of EJBException. (not CreateException, strange, but maybe programer wants to throw

[JBoss-user] serious ejbql compiler problem

2003-01-16 Thread Alexey Yudichev
Title: serious ejbql compiler problem Jboss 3.0.4. 2 entities: StoreCategory and Partner. 2 relationships between them: 1) ejb-relation ejb-relation-namePartner - StoreCategory/ejb-relation-name ejb-relationship-role

JBoss Administration Console [WAS: RE: [JBoss-user] Re: WANTED: Lead JBoss Developers

2003-01-16 Thread Sacha Labourey
Please see this: http://www.jboss.org/forums/thread.jsp?forum=160thread=26785 Anyone is welcome on this project, which will work hand-by-hand with the JSR-77 effort, from which many information and statistics will be taken. Consequently, the efforts need to be put in both the JSR-77

Re: [JBoss-user] MySQL Datasource configuration problem

2003-01-16 Thread James Cleary
Try changing the first occurence of name to service as follows. Not sure which version of JBoss they changed this in but it's always biting me because we run several versions. depends optional-attribute-service=JaasSecurityManagerServicejboss.secur ity:service=JaasSecurityManager/depends

[JBoss-user] 1:n relationship / ejbCreate() with CMP

2003-01-16 Thread Marek Lange
Hi all, I definded a 1:n relationship between two tables. My question: how do I insert a data set with ejbCreate() in the table containing the foreign key? Do I have to define the foreign key as a cmp-field? Going this way, the container always generates a false SQL statement which contains

RE: [JBoss-user] JNDIView and Hypersonic manager in 3.2.0b2/jetty ?

2003-01-16 Thread Rupp,Heiko
Hi, Also again .. on 3.2.0beta and the old console at :8082 this worked like a charm. Not only the hsql service, but also the JNDI view. I can't even shut down the system from jboss.system:halt() button. This works again as supposed in 3.2.0RC1 *phew* Heiko -- Bancotec GmbH EMail:

[JBoss-user] A 32RC1 error

2003-01-16 Thread Jon Finanger
During startup jboss throws this error (below). It indicates that a table is missing. The only configuration i've done is to remove hsqldb-ds.xml with mysql-ds.xml and added the mysql driver jar to lib. The only table i can see jms has created is: jms_transactions Anything i'm missing? -Jon

[JBoss-user] Files missing in 3.0.5RC1 or am I lost

2003-01-16 Thread Lennart Petersson
Since Sourceforge pserver seems down i needed to download the released file with sources instead. Went to the toplevel build directory and tried to builed it using build.sh and got lots of errors. One of them complained on org.jboss.naming.Util being unknown and I understand that 'cause I

Re: [JBoss-user] 1:n relationship / ejbCreate() with CMP

2003-01-16 Thread Gabriel Pinto
You must set your foreign key as a cmr field. Then you can set it at the post create method. Gabriel On Thu, 16 Jan 2003, Marek Lange wrote: Hi all, I definded a 1:n relationship between two tables. My question: how do I insert a data set with ejbCreate() in the table containing the

[JBoss-user] Virtual Hosts

2003-01-16 Thread Gabriel Pinto
How to configure JBOSS to work with diffetent applications, from different users, without interfering one with the others? Is the solution the use of Virtual Hosts? How to configure Virtual Hosts? How do the different users deploy their applications? Thanks Gabriel -- Gabriel Esteves

[JBoss-user] jbossmq-service deployment takes a LONG time in 3.2.0RC1

2003-01-16 Thread David Ward
I'm using jboss-3.2.0RC1_tomcat-4.1.18 with Sun JDK 1.4.1_01 on Mandrake 9.0 Linux 2.4.19-16, with half a gig of RAM and an 800mghz i686 cpu. I've noticed that on JBoss startup (using the default server), this line takes upwards of ** 15 seconds **: 10:13:24,288 INFO [SARDeployer] looking for

Re: [JBoss-user] 1:n relationship / ejbCreate() with CMP

2003-01-16 Thread Marek Lange
Gabriel Pinto schrieb: You must set your foreign key as a cmr field. Then you can set it at the post create method. I did that and the problem seems to be that it is not possible to insert a foreign key field from a relationship which is set to NOT NULL in the database. The ejbPostCreate()

Re: [JBoss-user] A 32RC1 error

2003-01-16 Thread Adrian Brock
Change the following in jbossmq-service.xml CREATE_MESSAGE_TABLE = CREATE TABLE JMS_MESSAGES ( MESSAGEID INTEGER NOT NULL, \ DESTINATION VARCHAR(255) NOT NULL, TXID INTEGER, TXOP CHAR(1), \ MESSAGEBLOB OBJECT, PRIMARY KEY (MESSAGEID, DESTINATION) ) to

RE: [JBoss-user] classloading from WAR

2003-01-16 Thread MNewcomb
-Original Message- From: Scott M Stark [mailto:[EMAIL PROTECTED]] Subject: Re: [JBoss-user] classloading from WAR The contents of wars is not treated as deployable unless you happen to be using an snapshot from and old version of main. Yep. I had to baseline HEAD, around

Re: [JBoss-user] jbossmq-service deployment takes a LONG time in3.2.0RC1

2003-01-16 Thread Stefan Arentz
David Ward wrote: I'm using jboss-3.2.0RC1_tomcat-4.1.18 with Sun JDK 1.4.1_01 on Mandrake 9.0 Linux 2.4.19-16, with half a gig of RAM and an 800mghz i686 cpu. I've noticed that on JBoss startup (using the default server), this line takes upwards of ** 15 seconds **: 10:13:24,288 INFO

[JBoss-user] Redeployment bug at farm service?

2003-01-16 Thread Vladyslav Kosulin
Here is what happens when I replace the old .ear with the new one: First, the box with file replaced undeploys the old application and deploys the new one. During this process the second box starts undeployment of old application, and after this is done, I get the message

[JBoss-user] Nature of Tomcat / JBoss integration

2003-01-16 Thread HORTON,NOAH (HP-FtCollins,ex1)
Hi! I am helping to evaluate using JBoss in a project and have some questions about how Tomcat and JBoss are integrated. Does Tomcat run in the same JVM with JBoss? If not, what sort of communication is used between the two JVMs? If they run in one JVM, do you think it is possible to get them

Re: [JBoss-user] jbossmq-service deployment takes a LONG time in 3.2.0RC1

2003-01-16 Thread Peter Fagerlund
torsdagen den 16 januari 2003 kl 16.31 skrev Stefan Arentz: David Ward wrote: I'm using jboss-3.2.0RC1_tomcat-4.1.18 with Sun JDK 1.4.1_01 on Mandrake 9.0 Linux 2.4.19-16, with half a gig of RAM and an 800mghz i686 cpu. I've noticed that on JBoss startup (using the default server), this

[JBoss-user] RE: A 32RC1 error

2003-01-16 Thread Jon Finanger
As usual i was searching to little before posting :) found it just after i pressed send. To make jms and mysql without this error you only need to configure this: In jbossmq-service.xml replace the MESSAGEBLOB OBJECT with BLOB in this line: CREATE_MESSAGE_TABLE = CREATE TABLE JMS_MESSAGES (

Re: [JBoss-user] serious ejbql compiler problem

2003-01-16 Thread Dain Sundstrom
That is the way EJB-QL works. When you have an collection member declaration (i.e. the IN clause in the FROM), you are requesting a join. Anyway, the following should work: SELECT OBJECT(c) FROM StoreCategory c, Partner p WHERE c.id=?1 AND (c.partnerOwner.id=?2 OR (p.id=?2 AND p MEMBER OF

[JBoss-user] Could not enlist in transaction on entering meta-aware object

2003-01-16 Thread David Ward
I am getting the following error using jboss-3.2.0RC1_tomcat-4.1.18, JDK 1.4.1_01 hitting Oracle 9.2.0.1.0 (with initjvm), using the matching thin jdbc driver. All requests go through a servlet that wraps everything in a JNDI-looked-up UserTransaction. Could not enlist in transaction on

Re: [JBoss-user] Nature of Tomcat / JBoss integration

2003-01-16 Thread Vladyslav Kosulin
HORTON,NOAH (HP-FtCollins,ex1) wrote: Hi! I am helping to evaluate using JBoss in a project and have some questions about how Tomcat and JBoss are integrated. Does Tomcat run in the same JVM with JBoss? If not, what sort of communication is used between the two JVMs? If they run in one JVM,

[JBoss-user] Disable nested deployments

2003-01-16 Thread Danilo Luiz Rheinheimer
Hello, How I can disable the nested deployments in a SAR file ? The problem is I have many .bsh files on it and when I deploy it on 3.2RC1 it deploy this files. This files are bean shell scripts but to be used by my mbean and not to be deployed. -- Best regards, Danilo

RE: [JBoss-user] jbossmq-service deployment takes a LONG time in 3.2.0RC1

2003-01-16 Thread MNewcomb
On first startup or on sequential startups ? Depending on how hard You populated the DefaultDS Hypersonic backend, I am guessing - Hypersonic on a sequential startup is rebuilding tables and populating data while the jbossmq component idle's, since it is dependent on DefaultDS to be

RE: [JBoss-user] Disable nested deployments

2003-01-16 Thread Sacha Labourey
Hello, I suggest you disable the BSH sub-deployer i.e. in conf/jboss-service.xml, comment out the jboss.secripts:service=BSHDeployer MBean definition Cheers, sacha -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]De la part de Danilo Luiz Rheinheimer Envoye :

Re: [JBoss-user] jbossmq-service deployment takes a LONG time in 3.2.0RC1

2003-01-16 Thread Adrian Brock
Hi, The problem is with the regular expression parsing introduced so you can write ${system.property} in attributes. attribute name=SqlProperties replace=false will disable the check as a temporary fix. Regards, Adrian From: David Ward [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL

Re: [JBoss-user] Nature of Tomcat / JBoss integration

2003-01-16 Thread Guy Rouillier
- Original Message - From: HORTON,NOAH (HP-FtCollins,ex1) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 11:16 AM Subject: [JBoss-user] Nature of Tomcat / JBoss integration Hi! I am helping to evaluate using JBoss in a project and have some questions about

RE: [JBoss-user] Could not enlist in transaction on entering meta-aware object

2003-01-16 Thread Igor Fedorenko
I've never tried it with UserTransaction. Could you check that basic container managed transaction works? (simple SSB that inserts one row into a db). If CMT works I'll look into UserTransaction issues. -Original Message- From: David Ward [mailto:[EMAIL PROTECTED]] Sent: Thursday,

[JBoss-user] listing current users/connections

2003-01-16 Thread Beau Cronin
Hi all. Can someone point me toward the best way to enumerate all current connections, meaning all current connecting threads and the associated users/Principals? I want to keep track of some locking info, and I need to check periodically for connections that have silently failed so that I

Re: [JBoss-user] Disable nested deployments

2003-01-16 Thread Peter Fagerlund
torsdagen den 16 januari 2003 kl 19.19 skrev Danilo Luiz Rheinheimer: How I can disable the nested deployments in a SAR file ? The problem is I have many .bsh files on it and when I deploy it on 3.2RC1 it deploy this files. This files are bean shell scripts but to be used by my mbean and not

RE: [JBoss-user] Could not enlist in transaction on entering meta-aware object

2003-01-16 Thread Sasidharan, Manoj
Here are my few cents: 1. Try re-starting JBoss and see if it helps 2. Have you run the Oracle JVM initialisation SQLs on the database.. This is required for using XA with Oracle. There is a script/sql to verify whether this is installed fine. 3. Oracle provides separate JDBC drivers for use with

[JBoss-user] How to get the Classloader of a EJB Module ?

2003-01-16 Thread Danilo Luiz Rheinheimer
Hello, I am doing a MBean where I need to get the ClassLoader of a EjbModule. The EjbModule class has the method I need : public ClassLoader getClassLoader() but I need to call it using server.invoke, something like this : ObjectName name = new ObjectName(ejbModuleName);

[JBoss-user] jboss cvs is down?

2003-01-16 Thread Herve Tchepannou
Title: jboss cvs is down? I browse jboss CVS at sourceforge.net. Anyone know whats going on? Herve Tchepannou Software Engineer Objexis Coorporation Phone: (514) 932 3295 Ext. 231 mailto:[EMAIL PROTECTED] Objexis Coorporation http://www.objexis.com 1635 Sherbrooke West, Suite #405

Re: [JBoss-user] jbossmq-service deployment takes a LONG time in3.2.0RC1

2003-01-16 Thread David Ward
That was the fix. You da' man; thanx. David -- Adrian Brock escribió:: Hi, The problem is with the regular expression parsing introduced so you can write ${system.property} in attributes. attribute name=SqlProperties replace=false will disable the check as a temporary fix. Regards, Adrian

Re: [JBoss-user] jboss cvs is down?

2003-01-16 Thread Scott M Stark
jboss cvs is down?From the SF site status page: http://sourceforge.net/docman/display_doc.php?docid=2352group_id=1 (2003-01-14 14:04:19 - Project CVS Services) As of 2003-01-14, pserver-based CVS repository access and ViewCVS (web-based) CVS repository access have been taken offline as to

Re: [JBoss-user] Could not enlist in transaction on entering meta-aware object

2003-01-16 Thread David Ward
Thanks for the response, Manoj. I have answered your questions below: Sasidharan, Manoj escribió:: Here are my few cents: 1. Try re-starting JBoss and see if it helps Tried. Doesn't help. 2. Have you run the Oracle JVM initialisation SQLs on the database.. This is required for using XA

Re: [JBoss-user] Could not enlist in transaction on entering meta-awareobject

2003-01-16 Thread David Ward
Igor, thanks for your help. My code has many places where a SLSB puts data into a DB, all with Transaction set as Required. My app is basically like this (sorry for the ASCII art): HttpServletRequest | V HttpServlet - Look up and start UserTransaction -

Re: [JBoss-user] Replication fails: strange JavaGroups Exception

2003-01-16 Thread Vladyslav Kosulin
Vladyslav Kosulin wrote: This exception is shown only on Linux side, and any replication does not happen. I am wrong - it looks like it is thrown on the data receiver side, either Linux or Win. Vlad --- This SF.NET email is sponsored by:

Re: [JBoss-user] Nature of Tomcat / JBoss integration

2003-01-16 Thread Nicholas
Or, even better, run all three in one JVM. --- Vladyslav Kosulin [EMAIL PROTECTED] wrote: HORTON,NOAH (HP-FtCollins,ex1) wrote: Hi! I am helping to evaluate using JBoss in a project and have some questions about how Tomcat and JBoss are integrated. Does Tomcat run in the same JVM

[JBoss-user] multiple bean version question

2003-01-16 Thread Eric Kaplan
What's the best way to support the following? We have a core ejb-jar.xml that has in it session beans that have ejb refs to other beans that are not in the same jar. e.g. session display-nameCoreSessionEJB/display-name ejb-nameejb/CoreSession/ejb-name

RE: [JBoss-user] Could not enlist in transaction on entering meta-aware object

2003-01-16 Thread Igor Fedorenko
Also Could not enlist in transaction on entering meta-aware object does not say much except there was an exception. Could you check log/server.log for something more interesting? -Original Message- From: David Ward [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 4:47 PM To:

[JBoss-user] jboss-3.0.5_tomcat-4.0.6 class loading problem when *.ear file deployed

2003-01-16 Thread Boris Tamarkin
Title: jboss-3.0.5_tomcat-4.0.6 class loading problem when *.ear file deployed Migrated to bundle jboss-3.0.5_tomcat-4.0.6 from jboss-3.0.4_tomcat-4.0.6 Running with JDK 1.4.1_01 on Win2000. When deploy ear file, at some point have java.lang.NoClassDefFoundError (enclosed below). Class

[JBoss-user] finders, postgresql and jboss3.2.0RC1

2003-01-16 Thread Jason Essington
I have a session bean that has finders defined by xDoclet tags like so: * @ejb.finder * signature="java.util.Collection findAll()" * mapping="Local" * intf="LocalHome" * query="SELECT OBJECT(o) FROM ReportWV o" * * @ejb.finder * signature="java.util.Collection

Re: [JBoss-user] Nature of Tomcat / JBoss integration

2003-01-16 Thread João Clemente
I did not completely undertood the scenario you described. Let me put some question that maybe will clear things up: We can have tomcat+Jboss in one VM, or separated (just like jetty+jboss, as far as I know) If separated, you said they communicate over JRMP (is this some sort of RMI?). If in

Re: [JBoss-user] finders, postgresql and jboss3.2.0RC1

2003-01-16 Thread Jason Essington
BAH! suppose it's best to have a primary key of some sort to keep the bean from getting all angry and confused -jason On Thursday, January 16, 2003, at 05:55 PM, Jason Essington wrote: I have a session bean that has finders defined by xDoclet tags like so: * @ejb.finder *

Re: [JBoss-user] 1:n relationship / ejbCreate() with CMP

2003-01-16 Thread Rod Macpherson
CMP is fine provided but in combination with CMR on the same field. As you point out the CMR must be set in ejbPostCreate whereas a CMP value can be set in the ejbCreate or in ejbPostCreate - provided it is does not have a non-null constraint if the latter is used. - Original Message -

Re: [JBoss-user] 1:n relationship / ejbCreate() with CMP

2003-01-16 Thread Rod Macpherson
Just went through this issue myself. Set the constraint to deferred so that it is not checked until commit time and you will be golden. A delayed insert option would be nice and it would simplify porting from legacy containers: weblogic for example. - Original Message - From: Marek Lange

[JBoss-user] WAMOZ.COM

2003-01-16 Thread Sarah Williams
HiI visited WAMOZ.COM, and noticed that you're not listed on some search engines! I think we can offer you a service which can help you increase traffic and the number of visitors to your website.I would like to introduce you to TrafficMagnet.com. We offer a

[JBoss-user] Transaction timed out

2003-01-16 Thread Igor Semenko
Does any body know why I periodically see this in my logs? [org.jboss.tm.TxCapsule] Transaction XidImpl [FormatId=257, GlobalId=localhost.localdomain//23606, BranchQual=] timed out. status=STATUS_ACTIVE I monitor POP3 mail box each 5 seconds, to do so I perform: ... session =

[JBoss-user] Help! ClassNotFoundException: org.jboss.ejb.plugins.local.LocalHomeProxy

2003-01-16 Thread Matthew Van Horn
Anyone know what might lead to this error? javax.naming.CommunicationException [Root exception is java.lang.ClassNotFoundException: org.jboss.ejb.plugins.local.LocalHomeProxy (no security manager: RMI class loader disabled)] at accesstech.ServiceLocator.getLocalHome(ServiceLocator.java:77)

Re: [JBoss-user] Http Clustering: No store ?!?

2003-01-16 Thread Jules Gosnell
João Clemente wrote: As I've reported some days ago, when using 3.0.5RC2, I am getting these strange lines in my log file. This time I'm using 3.0.5 binaries available in sourceforge. 01:16:45,502 INFO [JBossWebApplicationContext] setDistributable true 01:16:46,062 INFO

Re: [JBoss-user] Nature of Tomcat / JBoss integration

2003-01-16 Thread Guy Rouillier
- Original Message - From: João Clemente [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 8:11 PM Subject: Re: [JBoss-user] Nature of Tomcat / JBoss integration I did not completely undertood the scenario you described. Let me put some question that maybe will

[JBoss-user] multiple war applications - single sign on

2003-01-16 Thread hans albers
Hi there, I have 2 Web-Applications (war), which I have protected in my web.xml (url-pattern, roles...). Both need the same role. How can I achive that it's sufficent to sign on at the first application host/app1 and then access host/app2 without having to identify again?? (JBoss 3.x.x, Tomcat

[JBoss-user]

2003-01-16 Thread ÒÝ·ÉÁëcntour2
Title: Mail frameset rows=*,90 frameborder=NO border=0 framespacing=0 cols=*frame name=mainFrame src=frame name=bottomFrame scrolling=NO noresize src=http://www.caretop.com/support/mailfoot.htm/framesetnoframesbody bgcolor=#FF text=#00/body/noframes

[JBoss-user] Re: multiple war applications - single sign on

2003-01-16 Thread Craig R. McClanahan
On Thu, 16 Jan 2003, hans albers wrote: Date: Thu, 16 Jan 2003 14:40:45 + From: hans albers [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: multiple war applications - single sign on Hi there, I have 2

[JBoss-user] multiple war applications - single sign on

2003-01-16 Thread hans albers
Hi there, I have 2 Web-Applications (war), which I have protected in my web.xml (url-pattern, roles...). Both need the same role. How can I achive that it's sufficent to sign on at the first application host/app1 and then access host/app2 without having to identify again?? (JBoss 3.x.x, Tomcat

[JBoss-user] JBoss-3.2.0RC1 source archive updated

2003-01-16 Thread Scott M Stark
The jboss-3.2.0RC1-src.tgz originally released had many files missing. It has been rereleased and is available here: http://prdownloads.sourceforge.net/jboss/jboss-3.2.0RC1-src.tgz?download Scott Stark Chief Technology Officer JBoss Group, LLC

[JBoss-user] FW: Linux World Arwards

2003-01-16 Thread Ben Sabrin
All, Today has started off great, we just got a call from Frank at Linux World letting us know that we are finalists in two categories at Linux World. They are: Best Open Source Project other finalists include Eclipse, Open Office, Vovida, and ephibian (spelling could be wrong)

[JBoss-user] FW: Open Source Excellence Awards

2003-01-16 Thread Ben Sabrin
Thought you might want to read the official release. We are swimming with the Sharks:) I think we can and should win the open source project as we have a more mature code base and more downloads than any of the other projects. It should be interesting to see what happens. We are competing

[JBoss-user] JB4 anonymous download restablished

2003-01-16 Thread marc fleury
All we need is to create a user with a given name and passwd and add him to our cvs tree, we give him rights to checkout under a name, can I stop him from checking in? We publicize the anonymous login equivalent and give them the cvs line to run. marcf xx Marc Fleury, Ph.D.

[JBoss-user] BootCamp-- can't miss it

2003-01-16 Thread marc fleury
OK bootcamp in Atlanta is Feb 1-2 and almost ALL core developers are coming to Atlanta. It is a meeting of JBoss minds and don't want to miss it as we rarely get together this way. It is kind of unique. I know I am seriously looking forward to it. BootCamp is a weekend session, Saturday