RE: [JBoss-dev] sar startup ordering

2002-06-03 Thread Per Nyfelt
] Subject: Re: [JBoss-dev] sar startup ordering This has been available since (I think) 3.0 RC2. Take a look at the default jboss-service.xml file. At the bottom in the Deployment Scanning section, look for an attribute named URLComparator. The default comparator (DeploymentSorter) sorts

Re: [JBoss-dev] sar startup ordering

2002-06-03 Thread Larry Sandereson
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 03, 2002 5:49 AM Subject: RE: [JBoss-dev] sar startup ordering This should be the default comparator, I have been saying it for about 4 month, Main Deployer is part of the System, marcf PS: please patch HEAD

Re: [JBoss-dev] sar startup ordering

2002-06-03 Thread Larry Sandereson
AM Subject: RE: [JBoss-dev] sar startup ordering I ended up creating my own Comparator since i want the non-numbered files to deploy first using the rules of the DeploymentSorter and then deploy according to their numbered prefix. In order to actually use is however, the only way I found

RE: [JBoss-dev] sar startup ordering

2002-06-03 Thread marc fleury
] |Subject: Re: [JBoss-dev] sar startup ordering | | |The best solution I have found is to use the classpath... / tag in your |default jboss-service.xml. Certainly putting it in your jboss-system.jar |seems a bit extreme. | |-Larry | |- Original Message - |From: Per Nyfelt [EMAIL PROTECTED

RE: [JBoss-dev] sar startup ordering

2002-06-03 Thread Per Nyfelt
: RE: [JBoss-dev] sar startup ordering Your applications depends on the system beind deployed so you better put your numbered deployments at the end. marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Larry |Sandereson |Sent: Monday, June 03

RE: [JBoss-dev] sar startup ordering

2002-06-03 Thread Per Nyfelt
Ahh, thanks! /Per :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Larry Sandereson Sent: Monday, June 03, 2002 5:25 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] sar startup ordering The best solution I have found is to use

Re: [JBoss-dev] sar startup ordering

2002-06-03 Thread lsanders
OK- I agree. I will modify the existing PrefixDeploymentSorter.java. I will also make it the default comparator in jboss-system.xml. Should I aply these changes to Branch_3_0? -Larry Yes, that is the only way that makes sence for me at least. I've submitted my sorter to patches... Best

Re: [JBoss-dev] sar startup ordering

2002-06-03 Thread Jason Dillon
: Monday, June 03, 2002 12:30 AM |Subject: RE: [JBoss-dev] sar startup ordering | | I ended up creating my own Comparator since i want the non-numbered | files | |to | | deploy first using the rules of the DeploymentSorter and then deploy | according to their numbered prefix. In order

Re: [JBoss-dev] sar startup ordering

2002-05-30 Thread lsanders
This has been available since (I think) 3.0 RC2. Take a look at the default jboss-service.xml file. At the bottom in the Deployment Scanning section, look for an attribute named URLComparator. The default comparator (DeploymentSorter) sorts by type in this order: *.sar, *service.xml, *rar,

RE: [JBoss-dev] sar startup ordering

2002-05-30 Thread Per Nyfelt
Perfect, this is the information i was looking for. Thanks a lot! Best regards, Per -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of lsanders Sent: Thursday, May 30, 2002 4:59 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] sar startup ordering