Re[2]: [JBoss-user] Error: my patience Not Bound

2003-03-19 Thread Hans Dockter
SMS The use case requiring ejb-refs is a module of resuable components that are deployment SMS more than once with different security, transaction, envrionment, resource-refs, etc. SMS based on the utilization of the component in the application workflow. You cannot have SMS such a component's

[JBoss-user] Design comments requested

2003-03-19 Thread loic . lefevre
Hello all, I'm asking to all of you comments about the design of the following J2EE application: This application is 2 years old. Its production directory structure was like an exploded EAR: root -- conf -- properties files -- lib -- web -- WEB-INF -- jsp

[JBoss-user] Accessing multiple SQL data sources using queries

2003-03-19 Thread Allan Kamau
Hi, I would like to know if there is any way to reference data from a table in a secondary datasource. My data exists in two data sources, PostgreSQL 7.2 and M$-SQL 2000. I configured the two data sources and I can use CMP to store data into both the data sources through configurations in my

Re: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread Brijesh Sood
Hi Eric Well this is good to used db based sequence number as the primary key . I m currently using the mysql and its auto_increment sequence as primary key But to use this feature u have to use jboss 3.2.03 beta ..As unique sequence no is managed by the db not but the EJB container . so

Re: [JBoss-user] Retrieving large lists

2003-03-19 Thread Pete Beck
On Tue, 2003-03-18 at 23:09, Philippe de M. Sevestre wrote: How often does the data from which you populate your pull-down changes ? Usually this kind of information is relatively static so you should consider caching the resulting bean collection in a session attribute (if user specific)

Re[2]: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread costin
Hi! So basically you can use the autoincrement feature with: - not doing anything in ejbCreate (the rest is standard - get/set methods/descriptor/etc...)? Is this correct? BS Hi Eric BS Well this is good to used db based sequence number as the primary key . I m currently using

Re: Re[2]: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread wonder sonic
Note that Oracle sequences can't be rollbacked! If you encounter any Exception (NullPointer...), there'll be a hole. Cheers, WS --- costin [EMAIL PROTECTED] a écrit : Hi! So basically you can use the autoincrement feature with: - not doing anything in ejbCreate (the rest is standard

[JBoss-user] JMX SOAP Adapter

2003-03-19 Thread Marco.Mistroni
hi all, does JBoss have a JMX SOAP adapter currently/in the future? eventually, are there any JMX SOAP adapter available that can be plugged into JBoss? thanx and regards marco --- This SF.net email is sponsored by: Does your

AW: [JBoss-user] JMX SOAP Adapter

2003-03-19 Thread Jung , Dr. Christoph
Hi Marco, In jboss.net, we have included an MBeanProvider for Axis that may be used to expose arbitrary Mbeans as web services. It suffers from malformed WSDL at the moment, but is functional wrt. Web service calls. CGJ -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL

Re: Re[2]: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread Brijesh Sood
yea right - Original Message - From: costin [EMAIL PROTECTED] To: Brijesh Sood [EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 4:06 PM Subject: Re[2]: [JBoss-user] CMP - Primary Key Strategies? Hi! So basically you can use the autoincrement feature with: - not doing anything in

Re[3]: [JBoss-user] Error: my patience Not Bound

2003-03-19 Thread Hans Dockter
HD Beside that, AFAIK the XDoclet team is well aware of the problem and HD working on less limited solutions. Let's see what they come up with in HD future versions. There is no fundamental limitation in regard to HD create multiple deployment units with metadata. There is of course one

[JBoss-user] 3.2RC3 hangs on startup

2003-03-19 Thread Lennart Petersson
Mac OSX jdk 1.4.1 official release. Starting default config with no change from downloaded archive. Clip from log: 12:01:50,399 DEBUG [ServiceController] Starting dependent components for: jboss.jca:service=LocalTxCM,name=DefaultDS dependent components: [ObjectName:

Re: [JBoss-user] 3.2RC3 hangs on startup

2003-03-19 Thread Andrew May
Having just upgraded I found that 3.2.0RC3 is configured to use the JDBC persistence manager for JMS by default. 3.0.x was configured to use the file persistence manager by default. The JDBC persistence relies on the Default hsqldb datasource. Because I don't need to use the database

Re: [JBoss-user] 3.2RC3 hangs on startup

2003-03-19 Thread Lennart Petersson
ok, then it comes up. Thanks! Anyone knows about why default configuration is failing... /L onsdagen den 19 mars 2003 kl 13.49 skrev Andrew May: Having just upgraded I found that 3.2.0RC3 is configured to use the JDBC persistence manager for JMS by default. 3.0.x was configured to use the

RE: [JBoss-user] Deploying scheduler after EAR deployment

2003-03-19 Thread Krishnakumar N
Hi, You can do this by using the deployment sorters specified in /conf/jboss-service.xml. For example, you can use the PrefixDeploymentSorter and call your scheduler service xml 1blahblah.xml. Cheers, Krishna -Original Message- From: Marek Lange [mailto:[EMAIL PROTECTED] Sent:

[JBoss-user] Tomcat doesn't start under JBoss 3.2.0RC3?

2003-03-19 Thread Chris Bonham
I'm in the process of upgrading our application from JBoss 3.2.0beta2 to 3.2.0RC3 under Windows XP, Sun JDK 1.4.1_01. We're using embedded Tomcat 4.0.6 as the webserver. I just built the 3.2.0RC3 version from CVS and the catalina bundle with Tomcat 4.0.6. When I startup, I get this message:

Re: [JBoss-user] Tomcat doesn't start under JBoss 3.2.0RC3?

2003-03-19 Thread Chris Bonham
I just downloaded the JBoss 3.2.0RC3 Tomcat 4.1.18 version from SourceForge and it doesn't have the same problems. Is there a difference between this file and the versions tagged as JBoss_3_2_0_RC3 in CVS? When I build the Tomcat versions, I created the local.properties file and called the build

[JBoss-user] startup error with jboss2.4.1_tomcat3.2.3

2003-03-19 Thread Gordon
Hi. I've been using jboss for a while now and everything was fine until i installed a program called Together. After doing this, I couldn't start up jboss. I get an error saying it cant add a shutdown hook. Tried to uninstall Together but it had no effect. I've also tried adding the rt.jar and

RE: Re[2]: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread Rod Macpherson
There will also be holes if you set the step size to something greater than one. The key (npi) is that you are not interested in the value provided it is unique. Thus the hi-lo cache strategy whereby you keep a bunch of keys in memory retrived from a sequence in oracle, for example, and if

[JBoss-user] Trying to build latest CVS version

2003-03-19 Thread Mark.Gargan
HI Everyone, Im trying to build from source a build of jboss-all I downloaded today yet I keep getting this error saying that it couldnt create the task or type of task: jmxdoclet. I understand that jboss uses its own version of ant to build the server and Ive built a nightly snap

[JBoss-user] jboss on linux (performance)

2003-03-19 Thread David Luis Fernandes de Araujo
Hello, i'm running jboss on a linux machine (redhat 7.3) and each one of the threads that jboss throws occupies 60 MB of memory. Is this normal ? What can i do minimize the memory usage ? Thanks .david --- This SF.net email is

Re: [JBoss-user] Trying to build latest CVS version

2003-03-19 Thread Ricardo Argüello
Hi, The jboss-all module should not be checked out anymore. Check out jboss-head for the latest code (JBoss 4.0 alpha). Read this page for instructions: http://www.jboss.org/developers/guides/quickstart.jsp Ricardo Argüello On Wed, 19 Mar 2003 16:55 , [EMAIL PROTECTED] sent: HI Everyone,

[JBoss-user] Re[6]: SPECjAppServer2002

2003-03-19 Thread Alexey Loubyansky
Christofer, let's discuss this in jboss-user list. Is it true that all the foreign key fields are mapped to primary key fields? Is orderId a part of OrderLineEnt primary key? alex Wednesday, March 19, 2003, 4:24:25 PM, Christofer Dutz wrote: CD Hi, CD after having some problems with jboss

Re: [JBoss-user] jboss on linux (performance)

2003-03-19 Thread John M Flinchbaugh
On Wed, Mar 19, 2003 at 06:03:20PM +, David Luis Fernandes de Araujo wrote: i'm running jboss on a linux machine (redhat 7.3) and each one of the threads that jboss throws occupies 60 MB of memory. Is this normal ? What can i do minimize the memory usage ? i believe this is all shared

Re: [JBoss-user] jboss on linux (performance)

2003-03-19 Thread Dan Christopherson
Are you looking at ps output? The memory is actually shared between all of the threads running in the same VM. It should be showing up under the 'shared' column in ps or top output. This deceptive reporting is an artifact of Linux's threading model: a thread is basically a process with

RE: [JBoss-user] Trying to build latest CVS version

2003-03-19 Thread Mark.Gargan
Hi Ricardo, Turns out my connection from a previous checkout was still open. Once I'd rebooted the connection was cleared. How come there's such a delay in sending mails to the jboss-uses list and them actually appearing on the list? Thanks again, Mark. -Original Message-

[JBoss-user] Problem with OIL JMS layer using all resources

2003-03-19 Thread Michael Bennett
I have written some code that sends off a large number of JMS objectMessages to a queue which can then decode the message scan the content and choose to do two things: send a new message back into the queue (URLIdentify) or send it to a new queue (ContentIdentify) When I run this

Re: [JBoss-user] jboss on linux (performance)

2003-03-19 Thread David Luis Fernandes de Araujo
So, do you think is safe to run jboss on linux in a production enviorment ? On Wed, 19 Mar 2003 12:27:17 -0500 John M Flinchbaugh [EMAIL PROTECTED] wrote: On Wed, Mar 19, 2003 at 06:03:20PM +, David Luis Fernandes de Araujo wrote: i'm running jboss on a linux machine (redhat 7.3) and

[JBoss-user] Help with LoginModules and Web/EJB layers

2003-03-19 Thread Marc Zampetti
All, I have a web app that is deployed into Jboss 3.2 RC2 using an EAR file. The entire app is mapped to a single security domain, with a custom LoginModule defined for the domain. The Custom LoginModule interfaces with a SecureID system to perform user authentication. Logging into the protected

[JBoss-user] AxisServlet acting strangely

2003-03-19 Thread Mark.Gargan
Hi folks, I deploy a HelloWorld webservice within jboss indirectly by inserting my wsr file containing my web-service.xml file into an ear application and deploying the application. Then when I go to check the webservices I have deployed at

Re: [JBoss-user] AxisServlet acting strangely.

2003-03-19 Thread Mark.Gargan
Hi again, Looks like I was just being a bit impatient. If I give it a few seconds to allow it to catch up then everything works like a dream. Sorry for the false alarm. Christoph, specifying * as the allowedmethods works perfectly as well. Great stuff. Thanks, Mark.

Re: [JBoss-user] jboss on linux (performance)

2003-03-19 Thread Dain Sundstrom
Loads of people do it quite successfully, so yes. -dain On Wednesday, March 19, 2003, at 02:54 PM, David Luis Fernandes de Araujo wrote: So, do you think is safe to run jboss on linux in a production enviorment ? On Wed, 19 Mar 2003 12:27:17 -0500 John M Flinchbaugh [EMAIL PROTECTED] wrote:

RE: [JBoss-user] jboss on linux (performance)

2003-03-19 Thread Jonathan Cowherd
Title: RE: [JBoss-user] jboss on linux (performance) Yes, behind a firewall. You can also change the amount of memory that JVM has avaiable with -Xmx and -Xms flags. Run java -X for the non standard options. Jonathan Paul Cowherd Linux and Java Administrator Genscape, Inc. Email: [EMAIL

RE: [JBoss-user] AxisServlet acting strangely.

2003-03-19 Thread David Wade
I was getting this all the time using 1.1beta when asking for the ?wsdl. Upgraded to RC3 and the issue went away. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, 20 March 2003 9:12 a.m. To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] AxisServlet acting

Re: [JBoss-user] Deploying scheduler after EAR deployment

2003-03-19 Thread Brian Wallis
On Thu, 20 Mar 2003 01:12, Krishnakumar N wrote: You can do this by using the deployment sorters specified in /conf/jboss-service.xml. For example, you can use the PrefixDeploymentSorter and call your scheduler service xml 1blahblah.xml. Yep, that will work, but I think in a large project

[JBoss-user] Am I in a transaction?

2003-03-19 Thread Brian Wallis
I have some utility classes that are used from beans with container managed transactions. How can I check (ensure) when I am in one of the utility routines that there is a transaction current? I cannot get a UserTransaction object via the context since it is a bean managed transaction so I

Re: [JBoss-user] Am I in a transaction?

2003-03-19 Thread Dain Sundstrom
TransactionManager tm = (TransactionManager) iniCtx.lookup(java:/TransactionManager); if(tm.getTransaction() != null) { // got a transaction } -dain On Wednesday, March 19, 2003, at 05:09 PM, Brian Wallis wrote: I have some utility classes that are used from beans with container managed

RE: [JBoss-user] Deploying scheduler after EAR deployment

2003-03-19 Thread David Wade
I had to cludge my way around the deployment of a SAR and EJB from the same EAR to ensure that the Mbean did not use the EJB until the EAR deployment was complete. Even though the EJB was deployed first, the MBean in my SAR failed when looking up the JNDI name of the EJB. It seems like the JNDI

[JBoss-user] DB Connection testing

2003-03-19 Thread David Wade
Is there a way of configuring a managed connection pool to validate the db connection before handing it out to an application? In WebLogic it is possible to set test on reserve and test on release, in this way an application is never handed a dud connection out of the pool. Why would I want

Re: [JBoss-user] Trying to build latest CVS version

2003-03-19 Thread Ricardo Argello
Hi, If you are behind a firewall try reading this: http://sourceforge.net/docman/display_doc.php?docid=14033group_id=1#firewall Regarding the delay in email delivery: I have no idea. Ricardo Argello - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday,

[JBoss-user] JBOSS 3.2 Final Release --- ?????

2003-03-19 Thread Yogesh Kumar B
Dear JBOSS Team, Please let me know when will be the final release of JBOSS 3.2 is expected ? Thanks, Yogesh --- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for

Re: [JBoss-user] DB Connection testing

2003-03-19 Thread David Jencks
This is available in 3.0.7 (cvs), 3.2RC2 and later, and 4. Supply CheckValidConnectionSQL in your ds config. It's part of the jdbc jca wrappers for the rather obvious reason that jboss has no business knowing what interfaces are implemented by the connectionfactory-like object, connection-like