RE: [JBoss-dev] init/create calls with subpackaging not in the same order

2002-02-26 Thread Sacha Labourey
Hello David, I doubt it is essential, however... init usually just identifies the deployment descriptor and file to watch. There is some advantage to locating this as soon as possible, to help avoid runaway redeploys in case of failure later. If an expected deployment descriptor is missing,

[JBoss-dev] init/create calls with subpackaging not in the same order

2002-02-25 Thread Sacha Labourey
Hello, In the MainDeployer code, when you deploy a package containing sub-packages: - init will be called on the wrapping package first, then on the inside packages - create will be called on the inside packages first, then on the wrapping package Why this logic? I don't mean I

Re: [JBoss-dev] init/create calls with subpackaging not in the same order

2002-02-25 Thread David Jencks
On 2002.02.25 03:47:06 -0500 Sacha Labourey wrote: Hello, In the MainDeployer code, when you deploy a package containing sub-packages: - init will be called on the wrapping package first, then on the inside packages - create will be called on the inside packages first, then