Technically Corona and Cocoon 2.2 run on top of the servlet-service framework. We haven't tried it yet but it should only be a matter of configuration to run Corona and Cocoon 2.2 in the same web application. The servlet protocol will also allow communication between the two worlds.

It *might* be possible to write an adapter to run Cocoon 2.2 sitemap components that have been migrated to Spring in Corona but the devil is in the details and you never know before you really try it.

BTW, you can have a look at Corona yourself. It is hosted by the Cocoon whiteboard: http://svn.eu.apache.org/repos/asf/cocoon/whiteboard/corona/trunk/


Kamal Bhatt wrote:
That sounds amazing. So is Cocoon 2.2 going to employ Corona?

5. Having a serious look into Corona.
Forgive my ignorance, but I assume you are not risking blindness or are intending to drink lots of beer, so what is Corona?

At Indoqa we have been working on a complete rewrite of Cocoon that we called Corona. The most basic module of Corona is the 'corona-pipeline' module. It is easily embeddable into any Java application because it comes with no dependency but the classes coming with the JRE. Here is an example for the pipeline API:

Pipeline pipeline = new NonCachingPipeline();

pipeline.addComponent(new FileGenerator(
    PipelineTest.class.getResource("/test.xml")));
pipeline.addComponent(new XSLTTransformer(
    PipelineTest.class.getResource("/test.xslt")));
pipeline.addComponent(new XMLSerializer());

pipeline.execute(null, System.out);

We also had the chance to tidy up a lot of things because the core of Cocoon isn't easily comprehensible after having been under development for about 7 years.

On top of corona-pipeline we put the corona-sitemap module. It implements more or less the sitemap language that you know from Cocoon 2.x. Like Cocoon 2.2 the sitemap components are managed by Spring but the dependency on Spring should be easily replaceable because it is hidden behind an interface whose implementation class is really simple.

The third layer of Corona is the 'corona-servlet' module. It provides a servlet that can be used together with the servlet-service framework.

From my POV the most important features have been implemented by now. Some things have to be cleaned up and error reporting has to be improved but I'm optimistic that this will happen in the next few weeks. Additionally we will donate another module to Corona that provides a way to implement controller logic for RESTful web applications/services.

Apparently the two missing things are documentation (I've already started with it) and an alpha-1 release. Of course the latter needs to be discussed by this community. For this purpose I will start a separate thread soon.





--
Reinhard Pötz                           Managing Director, {Indoqa} GmbH
                         http://www.indoqa.com/en/people/reinhard.poetz/

Member of the Apache Software Foundation
Apache Cocoon Committer, PMC member                  [EMAIL PROTECTED]
________________________________________________________________________

Reply via email to