[JBoss-user] does jboss come with an email server?

2002-10-29 Thread Derek Lin
does jboss come with an email server?  My guess is not, but would like to see if anyone can confirm. Thanks, Derek

[JBoss-user] Re: Re: Concurrency problem

2002-10-29 Thread Arijit Ghosh
Yes I do have a more specific problem which I had posted earlier but there didn't seem to be any reply for that. I am sending it again.. Hi, I am using Jboss3.0 with Tomcat 4.0.3. I am also using Castor. During our development process, we came across lot of castor bugs which we kept on fixi

Re: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Dain Sundstrom
Emerson Cargnin - SICREDI Serviços wrote: Dain Sundstrom wrote: Emerson, I disagree with you classification that cmp is not usable. There are many people that find the performance completely with in their expectations. It is only when you have a high expectation and a very complex schema

[JBoss-user] missing parent entity in 1-* CMR causes trouble

2002-10-29 Thread Justin Casp
Hi list, While iterating through a Collection of children in a one-to-many CMR that I obtained by a child bean finder method, I use the child's CMR accessor to get a reference to the parent entity, and then get some of the parent fields. However, if the parent is non-existent (these data are fro

Re: [JBoss-user] Re: transactions in stateless session bean.

2002-10-29 Thread Justin Casp
Rob, I solved my problem. Stupid mistake, which was what I thought it would be: I had in the dd set to 'Bean' rather than 'Container'. I must've copy-n-pasted some of the dd content from another session bean and forgot to change it. I guess that's what I deserve for not using xdoclet on this p

Re: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Emerson Cargnin - SICREDI Serviços
Dain Sundstrom wrote: Emerson, I disagree with you classification that cmp is not usable. There are many people that find the performance completely with in their expectations. It is only when you have a high expectation and a very complex schema that you have problems. what I really mean

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Schnitzer, Jeff
My life became _blissful_ about a month ago when I ditched entity beans and started using Hibernate for persistence. My data model objects are all pure java beans which I can 1) pass out of the EJB system and 2) cache anywhere I want, for however long I want, in a clustered environment. This seri

Re: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Dain Sundstrom
Emerson, I disagree with you classification that cmp is not usable. There are many people that find the performance completely with in their expectations. It is only when you have a high expectation and a very complex schema that you have problems. May applications happily use CMP today, and

Re: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Emerson Cargnin - SICREDI Serviços
i think that maybe using a read-ahead configuration for cmr could turn CMP usable, hence the cause of the slowness (IMHO) is the great number of selects as you navigate through each BEAN. Jason Westra wrote: Dain wrote: I disagree with you here. It depends on the type of reads you are doing.

[JBoss-user] Controlling Number of MDB Instances on a per MDB basis?

2002-10-29 Thread Seth Ladd
Hello! I see in standardjboss.xml some pool settings to help control how many MDBs are instantiated. What is the difference between the container-invoker-conf/MaximumSize (default 15) and the container-pool-conf/MaximumSize (default 100)? Also, is there a way to control this on a per MDB basi

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Jason Westra
Dain wrote: >>I disagree with you here. It depends on the type of reads you are >>doing. A lot of applications increase performance by offloading >>processing to the database with very complex queries and stored >>procedures, and the current CMP design can not benefit from this design. This was m

Re: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Dain Sundstrom
Jason Westra wrote: Hi JBoss friends, I tend to agree with Bill and Dain's last posting here. There are certain things that CMP is not designed to do *well* and large, heavy reads is one of them. I disagree with you here. It depends on the type of reads you are doing. A lot of applications

[JBoss-user] Re: JBoss3.0, Tomcat, SSL

2002-10-29 Thread jrssnyder
Yeah, that helped a lot. (duh!) Thanks a lot Jules, -- John Message: 3 Date: Tue, 29 Oct 2002 16:11:49 + From: Jules Gosnell <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] JBoss3.0, Tomcat, SSL Reply-To: [EMAIL PROTECTED] https://localhost:8443/pc ? Jules -

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Jason Westra
Hi JBoss friends, I tend to agree with Bill and Dain's last posting here. There are certain things that CMP is not designed to do *well* and large, heavy reads is one of them. I'd venture to guess the same performance problem will occur on other app servers, in which case, it is not a war of ser

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Bill Burke
JBoss is being used in production everywhere. I've been at 6 sites myself over the past year. IMHO and experience, entity beans are not the right choice if you're doing complex reporting. A handmade query cache with direct JDBC will always be faster. Besides, EJB QL doesn't have Group By. My b

Re: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Dain Sundstrom
Peter, I honestly wish you the best of luck with your project. There are some application that need performance beyond what CMP can offer. Usually people come to this conclusion way to early, but I bet you spent a long time looking at you specific problem. It really comes down to a trace of

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Georg Schmid
Peter, it's a great relief to see, that I am not the only one... I have not given up hope yet, but I cannot crank out enough hours to get to the core of the problem. In the app I did before the current one, I used the paging and web layer caching approach you suggest, albeit on a small scale. T

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Luttrell, Peter
Georg, I used 2 other non-ejb solutions to get what I needed done. Cache the dataobjects in the webtier. It will only work in certain cases, 2/3 in my case. I know it's duplicating work that the ejb container should do, but if there is noting that can be done to JBoss to get performance acceptab

Re: [JBoss-user] JBoss3.0, Tomcat, SSL

2002-10-29 Thread Jules Gosnell
https://localhost:8443/pc ? Jules [EMAIL PROTECTED] wrote: I'm new to JBoss and SSL. Using jboss-3.0.3_tomcat- 4.0.5, I have created a test application packaged as "pc.ear". I want to use SSL to protect connections between a client's browser and the servlets/JSP pages of the application.

[JBoss-user] JBoss3.0, Tomcat, SSL

2002-10-29 Thread jrssnyder
As a follow-up to my prior e-mail (same subject), I note that the JBoss.3.0QuickStart.Draft3.pdf refers to configuring a jboss.jcml configuration file, but I don't see such a file anywhere in the JBoss installation. Do I need to create this file? Where should I put it? Thanks for any help. --

[JBoss-user] Re: transactions in stateless session bean.

2002-10-29 Thread Rob Moore
Hi, Justin, I'm seeing something almost identical in a unit test I have. My code is slightly different than yours, but not by much. Basically, I create add an object to another (parent) object and when I try to fetch it by primary key and then ask for the child collection I get the same error.

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Luttrell, Peter
JBoss is losing credibility in our firm due to this performance problem as well as the issues i've noted about JMS performance. If anyone cares whether JBoss is actually used in the production environment, the team might consider investing time in making it perform well. .peter -Original Me

[JBoss-user] JBoss3.0, Tomcat, SSL

2002-10-29 Thread jrssnyder
I'm new to JBoss and SSL. Using jboss-3.0.3_tomcat- 4.0.5, I have created a test application packaged as "pc.ear". I want to use SSL to protect connections between a client's browser and the servlets/JSP pages of the application. I followed the advice and examples given here: http://www.jboss.

RE: [JBoss-user] Concurrency problem

2002-10-29 Thread Geer, Benjamin
Arijit Ghosh wrote: > Any pointers for concurrency related issues ? The J2EE specifications contain lots of information about concurrency-related issues. Perhaps you have a more specific question? Benjamin --- This sf.net email is sponsored

RE: [JBoss-user] binding ejb to wrong datasource

2002-10-29 Thread Sonnek, Ryan
thanks for the help. i'm using xdoclet, and i only had to change the @jboss:res-ref to @jboss:resource-manager. simple as can be! -Original Message- From: Guy Rouillier [mailto:guy-rouillier@;speakeasy.net] Sent: Monday, October 28, 2002 9:45 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss

[JBoss-user] javax.naming.NameAlreadyBoundException if I start my JBoss 2.4.4

2002-10-29 Thread Dirk Storck
Hi, If I start my JBoss 2.4.4 i get javax.naming.NameAlreadyBoundException; remaining name 'env' at org.jnp.server.NamingServer.createSubcontext(NamingServer.java:451) at org.jnp.interfaces.NamingContext.createSubcontext(NamingContext.java:648) at org.jnp.interfaces.NamingContext.cre

RE: [JBoss-user] installing JDBCand connection to ORACLE with JBOSS

2002-10-29 Thread Mokas Vassilis ([EMAIL PROTECTED])
First of all, I think you have to rename classes12.zip to classes12.jar. In oracle-service.xml add a tag like this: OracleDS jdbc:oracle:thin:@IPADDRESS:1521:ORCL oracle.jdbc.driver.OracleDriver USERNAME P

[JBoss-user] installing JDBCand connection to ORACLE with JBOSS

2002-10-29 Thread Pankaj Jain
hi I have downloaded the jdbc driver(clssess12.zip) and putted into the default/lib directory. Now for connecting to database what next step i have to do. I have dowloaded oracle-service.xml file but i did n't have any guide to edit it. I am using jboss-3.0.3_tomcat-4.1.12. And I am not getting any

[JBoss-user] Concurrency problem

2002-10-29 Thread Arijit Ghosh
Hi, Any pointers for concurrency related issues ? I am using Jboss3.0 with TOmcat 4.0.3 with Stateless Session Beans and Castor as the persistence layer. Regards, Arijit --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heave

Re: [JBoss-user] A question on Jboss scalability!

2002-10-29 Thread Marius Kotsbak
Bill Burke wrote: I did ran ECPerf tests and the RICE study on both linux and win2k. Linux was 2 times slower than Win2k. Not sure why, not much of a sys-admin so wouldn't know what to tune. When did you try this? What versions of jboss and Java VMs on both win2k and linux? I have no proble

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Sacha Labourey
Hello Georg, Do you mean that your slowness problem occurs when accessing the collection *even* in mono-threaded behaviour? If I understand your scenario, you have something like this: - a web page that display the content of 4000 entity beans (either directly or using a SLSB) - the entity bean

RE: [JBoss-user] Erroneous deadlock detected???

2002-10-29 Thread Georg Schmid
The behaviour imposed by the pessimistic locking violates the principle of "least surprise" for most Jboss users, I guess. That's the reason why you have to answer these questions a million times. If I am using all the EJB/J2EE/CMP stuff, I expect that I do not have to care about concurrency, tra

RE: [JBoss-user] Entity Bean Performance Tuning Help

2002-10-29 Thread Georg Schmid
First of all: This was only an experiment to check the impact of the EntitySynchronizationInterceptor on performance. Of course this is nothing you should do in a real setup. I know what the EntitySynchronizationInterceptor is for. I have been using JBoss for almost a year, reading almost all po