Re: Merlin's automatic component discovery

2004-04-09 Thread Stephen McConnell
Scott Brickner wrote: On Fri, 2004-04-09 at 18:09, Stephen McConnell wrote: Scott: Could you add this as a feasture request in the JIRA (together with your notes below)? Done - It's MODEL-5. Great - it's a valid suggestion but too many things to take care of immediately so this way it will n

Re: Merlin's automatic component discovery

2004-04-09 Thread Scott Brickner
On Fri, 2004-04-09 at 18:09, Stephen McConnell wrote: > Scott: > > Could you add this as a feasture request in the JIRA (together with your > notes below)? Done - It's MODEL-5. - To unsubscribe, e-mail: [EMAIL PROTECTED] For a

Re: Merlin's automatic component discovery

2004-04-09 Thread Stephen McConnell
Scott: Could you add this as a feasture request in the JIRA (together with your notes below)? Avalon Composition Package http://nagoya.apache.org/jira/secure/BrowseProject.jspa?id=10424 Cheers, Steve. Scott Brickner wrote: Is there any way to disable Merlin's automatic discovery of compone

Merlin's automatic component discovery

2004-04-09 Thread Scott Brickner
Is there any way to disable Merlin's automatic discovery of components? I have quite a number of distinct instances of a single component (a work queue). Each work queue represents a different stage of processing within my application. Each queue is serviced by a different component, usually resul

[Phoenix] Wrong DOCTYPE declarations - was Re: [Phoenix] Jetty block.

2004-04-09 Thread Leandro Rodrigo Saad Cruz
Hi all. I think that all DOCTYPE declarations on avalon-phoenix Phoenix_4_0_3 are wrong. The code generated by ant tasks points to http://jakarta.apache.org/avalon/dtds/phoenix/ANYTHING.dtd which no longer exists ! Any place I can find those files ? On Fri, 2004-04-09 at 14:49, peter royal wrote:

Re: [Phoenix] Jetty block.

2004-04-09 Thread Leandro Rodrigo Saad Cruz
I removed this lines from assembly.xml. http://jakarta.apache.org/phoenix/assembly_1_0.dtd";> Now I get : Failed to create BlockInfo for Block named "access" from resource "org/apache/avalon/apps/sevak/blocks/jetty/NCSARequestLogger.xinfo" (Reason: null). --- Stack Trace --- org.apache.avalon.pho

Re: [Phoenix] Jetty block.

2004-04-09 Thread Leandro Rodrigo Saad Cruz
I can't use it. I compiled it with #> cd $WORKSPACE/avalon-sandbox/sevak #> build -f jetty.xml #> cp $WORKSPACE/avalon-sandbox/sevak/build/lib/sevak-jetty-demo.sar $PHOENIX_HOME/apps started phoenix and I get : org.apache.avalon.phoenix.interfaces.DeploymentException: Error building configurati

Re: Entry point in block.xml in Merlin

2004-04-09 Thread Nader Aeinehchi
Thansk a lot for many good answers to my question. In order to log the answer to this question, let me summarize what I found. The block.xml (see in the bottom) has only one component activation="startup" which makes it a good candidate for main entry of an application. > > > class="net.jav

RE: Entry point in block.xml in Merlin

2004-04-09 Thread Olaf Bergner
If I understand your problem correctly you are disturbed as to what is Merlin's equivalent of the main method. While it is correct that the activation flag tells Merlin when to deploy a component it's got nothing to do with determining the entry point of a whole application. This is indeed somethin

Re: [Phoenix] Jetty block.

2004-04-09 Thread peter royal
On Apr 8, 2004, at 2:21 PM, Leandro Rodrigo Saad Cruz wrote: Where can I find it ? Can I use the block on sevak ? http://cvs.apache.org/viewcvs.cgi/avalon-sandbox/sevak/ Works great, we use it in production under Phoenix 4.1alpha. -pete -

Re: GUI application example

2004-04-09 Thread Scott Brickner
woo hoo! Thanks, Steve - I'm looking forward to reading them when I next take a breather from my server work. On Thu, 2004-04-08 at 17:50, Stephen McConnell wrote: > Scott Brickner wrote: > > Nah. Read that. It doesn't begin to describe the contract between the > > container and the components, w

Re: Entry point in block.xml in Merlin

2004-04-09 Thread Stephen McConnell
Cameron Fieber wrote: Hi Nader, Here is my understanding of how it works: Merlin looks at the provided block.xml file, and builds a list of components to deploy. These components come from the component declarations in the block.xml, the component declarations in any block.xml files in included

Re: Entry point in block.xml in Merlin

2004-04-09 Thread Stephen McConnell
Ten steps to deployment: 1. invoke merlin command line 2. default behavior is to launch java with -jar and the merlin-cli-VERSION.jar file 3. evaluates command line options with fallback to the merlin.properties resource in the initial jar file 4. Main class calls sets up an applicatio

Re: Entry point in block.xml in Merlin

2004-04-09 Thread Cameron Fieber
Hi Nader, Here is my understanding of how it works: Merlin looks at the provided block.xml file, and builds a list of components to deploy. These components come from the component declarations in the block.xml, the component declarations in any block.xml files in included blocks, and any compon

Re: Entry point in block.xml in Merlin

2004-04-09 Thread Nader Aeinehchi
Hi Thanks for the tips, but so far I have not managed to understand it. How does Merlin decide what to start when it reads a block.xml that contains several components and services? In a simple Java application, there is main method that is the entry point for the application. I would assume t

Re: Entry point in block.xml in Merlin

2004-04-09 Thread Stephen McConnell
Alex Karasulu wrote: What's your version of Merlin? I don't seem to have the CLI switch. CVS, aka 3.3. Steve. Alex -Original Message- From: David Worms [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 8:17 AM To: Avalon framework users Subject: Re: Entry point in block.xml in Me

RE: Entry point in block.xml in Merlin

2004-04-09 Thread Alex Karasulu
What's your version of Merlin? I don't seem to have the CLI switch. Alex > -Original Message- > From: David Worms [mailto:[EMAIL PROTECTED] > Sent: Friday, April 09, 2004 8:17 AM > To: Avalon framework users > Subject: Re: Entry point in block.xml in Merlin > > > On Friday, April 9, 20

Re: Entry point in block.xml in Merlin

2004-04-09 Thread David Worms
On Friday, April 9, 2004, at 02:11 PM, Nader Aeinehchi wrote: Hi I am trying to understand what the entry point in a block.xml is. For example, I looket at OpenIM that is built upon Merlin. OpenIM is launched with: merlin openim\jars\openim-server-impl-1.2.jar If this help, you can add "

Entry point in block.xml in Merlin

2004-04-09 Thread Nader Aeinehchi
Hi I am trying to understand what the entry point in a block.xml is. For example, I looket at OpenIM that is built upon Merlin. OpenIM is launched with: merlin openim\jars\openim-server-impl-1.2.jar Now when I look at the block.xml filen within the above jar file, I find lots of componen