Re: [JBoss-user] LDAP configuration

2003-01-22 Thread Holger Baxmann
the most comfortable way will be the jndi path. the jndi namespace in jboss is a federated one, so you are able to integrate external namespaces like dns, ldap, filesystems, c++ or your anchestry tree seamlessly into the jndi tree. you may then manipulate the objects via normal jndi lookup and

[JBoss-user] JBossMQ / MDB extensions

2003-01-22 Thread ulf . schroeter
How is it possible to include major source upgrades ( some new classes, some modifcations of existing classes ) into the regular JBoss/JBossMQ source WITHOUTdeveloper CVS access ? We have developped some missing - but for JBoss usage in a more complex JMS production environment vital - JBossMQ /

[JBoss-user] ConnectionFactories in JMS

2003-01-22 Thread madhu sudhan
Hi, Is there any way to create or set the ConnectionFactories dynamically in JMS? Any idea? thnaks in advance --- This SF.net email is sponsored by: Scholarships for Techies! Can't afford IT training? All 2003 ictp students receive

[JBoss-user] How to store the persistent messages?

2003-01-22 Thread madhu sudhan
Hi, I am using Jboss 3.0.0 and in my application i want to get(track)all the persistent messages in my JMS module, In Jboss all the persistent messages are stored on hard disk or database, i want to store all these messages into my own database for further processing, Jboss by default it is

[JBoss-user] Session Id not reinitialized

2003-01-22 Thread kiuma
Hello, I'm having the following problem: I'm using JBoss 3.0.4 with Jetty my login.jsp is: %@page language=java contentType=text/html;charset=UTF-8 session=true isThreadSafe=true isErrorPage=false import=javax.naming.*, com.wingstech.webappointments.interfaces.*,

Re: [JBoss-user] Session Id not reinitialized

2003-01-22 Thread Jules Gosnell
3.0.6 will be out soon (early next week?) Please repeat the test in that and if the problm persists, mail again with more detail - i.e. a blow-by-blow account of exactly what you did from both boxes and what behaviour you observed. Jules kiuma wrote: Hello, I'm having the following problem:

RE: [JBoss-user] JMS ping timeout exception

2003-01-22 Thread John Fawcett
Sorry, I was working against head, and wasn't even aware that this fix existed. Wish I had known, since I spent the better part of a day finding the old deadlock. Shame on me for not looking at 3.2 I guess. On the positive side, the current implementation looks slick to me. Much better than the

[JBoss-user] Compound Foreign Keys

2003-01-22 Thread Hanson, Matthew
Hi - I am using jboss-3.0.4_tomcat-4.1.12 with interfaces generated via xdoclet1.1.2. I have seen a lot of talk in the jboss forums about compound foreign keys in cmr. Most of the messages are of the type this/that version does/not support compound keys. Is it rude to post for a clear direction

Re: [JBoss-user] Compound Foreign Keys

2003-01-22 Thread Alex Loubyansky
- compound foreign keys are supported by all JBoss versions; - foreign key fields mapped to primary key fields are supported only since JBoss-3.2; - foreign key fields mapped to non-primary key CMP fields are not supported at all. It's not documented yet. Ask your questions here, but, please, try

[JBoss-user] JBoss Project Structure Convert

2003-01-22 Thread Michael Ukpong
I have been using JBoss Appserver for well over a year now. I use Sun One Studio for development and deploy in Jboss using Ant. I have been working all this while with virtually no documentation (dont blame me! read on). I recentlystumbled on the "Jboss 3.0 Quick Start Guide - Andreas Schaffer",

Re: [JBoss-user] JBossMQ / MDB extensions

2003-01-22 Thread Scott M Stark
Submit a patch to sourceforge with code as an attachment. Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 22, 2003 3:28

[JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Beau Cronin
I have a Swing app which is essentially single-threaded, accessing the server in the usual way through a session facade. I'd like to do some background loading of certain data for performance reasons, but when I try to do this by using a separate thread (and separate session instance), I get

Re: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Alex Loubyansky
what is the problem? what locking policy are you using? alex Wednesday, January 22, 2003, 8:43:05 PM, you wrote: BC I have a Swing app which is essentially single-threaded, accessing the BC server in the usual way through a session facade. I'd like to do some BC background loading of certain

Re: [JBoss-user] Can two separate client threads make simultaneouscalls?

2003-01-22 Thread David Ward
Are you hitting a Stateful Session Bean or a Stateless one? According to the EBJ spec, it is illegal to hit a transactional Stateful one from two threads simultaneously that have the same bean handle. David -- Beau Cronin escribió:: I have a Swing app which is essentially single-threaded,

Re: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Beau Cronin
All session beans are stateless. I've read the relevant portions of the spec, and I haven't seen anything to indicate that what I'm doing is illegal (although I could certainly have missed something...) Beau David Ward wrote: Are you hitting a Stateful Session Bean or a Stateless one?

Re: [JBoss-user] classpath order in jboss-service.xml

2003-01-22 Thread Scott M Stark
jars are added in the order of the classpath declarations. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: Muruga Chinnananchi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 20, 2003 3:04

Re: [JBoss-user] Can two separate client threads make simultaneouscalls?

2003-01-22 Thread Muntean Horia
Beau Cronin wrote: I have a Swing app which is essentially single-threaded, accessing the server in the usual way through a session facade. I'd like to do some background loading of certain data for performance reasons, but when I try to do this by using a separate thread (and separate

RE: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Bill Burke
you need to actually provide a stack trace or we can't help you. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alex Loubyansky Sent: Wednesday, January 22, 2003 1:56 PM To: Beau Cronin Subject: Re: [JBoss-user] Can two separate client threads

Re: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Beau Cronin
There are two messages which appear. The first is: 2003-01-22 11:31:08,725 ERROR [org.jboss.ejb.BeanLock] Application deadlock detected: TransactionImpl:XidImpl [FormatId=257, GlobalId=redbull//3324, BranchQual=] has deadlock conditions. Two or more transactions contending for same resources

Re: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Beau Cronin
I forgot to say that I'm using commit option A for performance reasons, with the default bean locking. Beau Alex Loubyansky wrote: what is the problem? what locking policy are you using? alex Wednesday, January 22, 2003, 8:43:05 PM, you wrote: BC I have a Swing app which is essentially

Re: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Beau Cronin
Muntean Horia wrote: Beau Cronin wrote: I have a Swing app which is essentially single-threaded, accessing the server in the usual way through a session facade. I'd like to do some background loading of certain data for performance reasons, but when I try to do this by using a separate

Re: [JBoss-user] Compound Foreign Keys

2003-01-22 Thread Rod Macpherson
All participating key fields must be designated CMP and you cannot have a single field designated as both CMP and CMR in the same bean - pretty sure those assertions are correct. Therefore you cannot have a compound key that contains a CMR field. - Original Message - From: Hanson, Matthew

RE: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread MNewcomb
I might have missed this, but what version of JBoss? -Original Message- From: Beau Cronin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 2:45 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Can two separate client threads make simultaneous calls? There are two

[JBoss-user] Too Slow

2003-01-22 Thread Gabriel Pinto
I'm running JBOSS in a Pentium III 1gHz with 512MB RAM with RedHat 7.2, but it is too slow! Even when I run only jsp files I can't get a reasonable speedy. When I run the application in a AMD Duron 800Mhz 256MB RAM it works a lot better? Anyone have any idea? Is there any configuration that

[JBoss-user] Message Sending Bean

2003-01-22 Thread John Fawcett
Hi, Is there a design pattern for a session bean or entity bean which sends messages? Something akin to MDB, but in reverse? Right now I have a session bean which maintains a singleton instance of a connection, and funnels all message sends for my application through a single connection. I

Re: [JBoss-user] Can two separate client threads make simultaneouscalls?

2003-01-22 Thread Dan Christopherson
These deadlocks are most likely on your entity beans (the second one is fishy looking, but I really can't say much without seeing more (all) of the stack trace.). By default, JBoss only keeps one instance per bean identity, so each transaction from your client will block on the entity. Give

Re: [JBoss-user] Too Slow

2003-01-22 Thread Rod Macpherson
How much memory are you giving the VM through your JAVA_OPTS environment variable? Have a large JSP based full-on J2EE application running on a lesser machine than that and it screams once the pages are compiled. - Original Message - From: Gabriel Pinto [EMAIL PROTECTED] To: [EMAIL

Re: [JBoss-user] Can two separate client threads make simultaneou s calls?

2003-01-22 Thread Beau Cronin
JBoss 3.0.4/Tomcat 4.0.6 Beau [EMAIL PROTECTED] wrote: I might have missed this, but what version of JBoss? -Original Message- From: Beau Cronin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 2:45 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Can two separate

Re: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Beau Cronin
Complete stack traces are attached. Sorry I didn't give them last time. You may well be right about why these deadlocks not occurring with separate clients. If that's so, is the solution to catch the deadlock exceptions? And any thoughts about the second stack trace (the iterator one)?

Re: [JBoss-user] Too Slow

2003-01-22 Thread Daniel Bruce Lynes
On Wednesday 22 January 2003 12:31, Gabriel Pinto wrote: I'm running JBOSS in a Pentium III 1gHz with 512MB RAM with RedHat 7.2, but it is too slow! Even when I run only jsp files I can't get a reasonable speedy. When I run the application in a AMD Duron 800Mhz 256MB RAM it works a lot

RE: [JBoss-user] Too Slow

2003-01-22 Thread Herve Tchepannou
Title: RE: [JBoss-user] Too Slow or you can change the default JSP compiler of Tomcat/Jetty to Jikes which is VERY VERY fast (you'll notice the difference) -Original Message- From: Daniel Bruce Lynes [mailto:[EMAIL PROTECTED]] Sent: 22 January 2003 16:12 To: JBoss Users Subject: Re:

RE: [JBoss-user] Can two separate client threads make simultaneous calls?

2003-01-22 Thread Bill Burke
In 3.2 and higher, deadlock exceptions are automatically retried. If you're using an earlier version, you'll have to catch and retry on your client. Bill Burke Chief Architect JBoss Group, LLC -Original Message- From: [EMAIL PROTECTED]

[JBoss-user] JB 3.0.4, loading classes from JAR in EAR

2003-01-22 Thread otisg
Hello, I am trying to use JBoss 3.0.4 and have a small problem. My EAR contains a WAR and a JAR. I am deploying this EAR to server/default/deploy. In my application I try to load a class from the JAR by doing Class.forName(class name here). This works fine under JBoss 2.4.4, but doesn't seem

Re: [JBoss-user] JBoss Project Structure Convert

2003-01-22 Thread viktor
onsdagen den 22 januari 2003 kl 19.07 skrev Michael Ukpong: but I cannot find the mentioned template project!, try : http://jmvanel.free.fr/jboss3-howto.html where can I find it and how can I convert my project structure to the jboss standard? I can hardly wait to start using XDoclet

RE: [JBoss-user] JBoss Project Structure Convert

2003-01-22 Thread John Fawcett
Also check out jboss-head/tools/etc/buildfragments The .ent files contain many useful definitions and patterns you can use/copy/edit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, January 22, 2003 8:18 PM To: [EMAIL

RE: [JBoss-user] Too Slow

2003-01-22 Thread Phuwarin . Supawarapong
I'm newbe, How to do that? Thanks in advance Herve Tchepannou

Re: [JBoss-user] JB 3.0.4, loading classes from JAR in EAR

2003-01-22 Thread Rod Macpherson
In general you cannot put a jar in an ear and get those classes loaded. The application.xml file is responsible for dictating what gets loaded. If you add a java element to application.xml for that jar file it might work but that really should be used for proper applications versus libraries.

[JBoss-user] ±Ð±z ¦p¦ó°µ¤@±iº}«Gªººô­¶

2003-01-22 Thread mmntbvackl
--- This SF.net email is sponsored by: Scholarships for Techies! Can't afford IT training? All 2003 ictp students receive scholarships. Get hands-on training in Microsoft, Cisco, Sun, Linux/UNIX, and more.