You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by "Grzegorz Kossakowski (JIRA)" <ji...@apache.org> on 2008/03/17 16:35:24 UTC

[jira] Created: (COCOON-2176) Remove dependency on CocoonSourceResolver from Servlet Service Framework

Remove dependency on CocoonSourceResolver from Servlet Service Framework
------------------------------------------------------------------------

                 Key: COCOON-2176
                 URL: https://issues.apache.org/jira/browse/COCOON-2176
             Project: Cocoon
          Issue Type: Task
          Components: - Servlet service framework
            Reporter: Grzegorz Kossakowski


The Servlet Service Framework depends on CocoonSourceResolver class from cocoon-core. CocoonSourceResolver class is used to resolve paths in context-path using custom source implementation, see ServletFactoryBean class for details.

 The SSF is meant to be Cocoon-independent subproject so this dependency must be removed as soon.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (COCOON-2176) Remove dependency on CocoonSourceResolver from Servlet Service Framework

Posted by "Grzegorz Kossakowski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COCOON-2176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Grzegorz Kossakowski updated COCOON-2176:
-----------------------------------------

    Attachment: COCOON-2176-Webapp-25.04.2008.tar.gz

Attaching modified test-case that depends on refactored SSF that is free of CocoonSourceResolver dependencies.

This test-case passes so the bug can be closed.

Many thanks to Reinhard for his work that made this happen!

> Remove dependency on CocoonSourceResolver from Servlet Service Framework
> ------------------------------------------------------------------------
>
>                 Key: COCOON-2176
>                 URL: https://issues.apache.org/jira/browse/COCOON-2176
>             Project: Cocoon
>          Issue Type: Task
>          Components: - Servlet service framework
>            Reporter: Grzegorz Kossakowski
>            Assignee: Grzegorz Kossakowski
>         Attachments: COCOON-2176-Webapp-25.04.2008.tar.gz, COCOON-2176-Webapp.tar.gz
>
>
> The Servlet Service Framework depends on CocoonSourceResolver class from cocoon-core. CocoonSourceResolver class is used to resolve paths in context-path using custom source implementation, see ServletFactoryBean class for details.
>  The SSF is meant to be Cocoon-independent subproject so this dependency must be removed as soon as possible.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (COCOON-2176) Remove dependency on CocoonSourceResolver from Servlet Service Framework

Posted by "Grzegorz Kossakowski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COCOON-2176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Grzegorz Kossakowski closed COCOON-2176.
----------------------------------------

                 Resolution: Fixed
    Fix version (Component): Parent values: Servlet Service Framework(10247). Level 1 values: 1.1.0-dev(10351). 

> Remove dependency on CocoonSourceResolver from Servlet Service Framework
> ------------------------------------------------------------------------
>
>                 Key: COCOON-2176
>                 URL: https://issues.apache.org/jira/browse/COCOON-2176
>             Project: Cocoon
>          Issue Type: Task
>          Components: - Servlet service framework
>            Reporter: Grzegorz Kossakowski
>            Assignee: Grzegorz Kossakowski
>         Attachments: COCOON-2176-Webapp-25.04.2008.tar.gz, COCOON-2176-Webapp.tar.gz
>
>
> The Servlet Service Framework depends on CocoonSourceResolver class from cocoon-core. CocoonSourceResolver class is used to resolve paths in context-path using custom source implementation, see ServletFactoryBean class for details.
>  The SSF is meant to be Cocoon-independent subproject so this dependency must be removed as soon as possible.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (COCOON-2176) Remove dependency on CocoonSourceResolver from Servlet Service Framework

Posted by "Grzegorz Kossakowski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COCOON-2176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Grzegorz Kossakowski updated COCOON-2176:
-----------------------------------------

    Attachment: COCOON-2176-Webapp.tar.gz

Added test-case for this problem. Just enter main directory and call mvn package jetty:run. You will see following exception:

2008-03-17 16:31:20.728::WARN:  Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cocoon.servletservice.demo1.servlet': Cannot resolve reference to bean 'org.apache.cocoon.servletservice.demo2.servlet' while setting bean property 'connections' with key [TypedStringValue: value [demo2], target type [null]]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cocoon.servletservice.demo2.servlet': Invocation of init method failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'org.apache.excalibur.source.SourceResolver' is defined:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'org.apache.excalibur.source.SourceResolver' is defined
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:378)
[...]

> Remove dependency on CocoonSourceResolver from Servlet Service Framework
> ------------------------------------------------------------------------
>
>                 Key: COCOON-2176
>                 URL: https://issues.apache.org/jira/browse/COCOON-2176
>             Project: Cocoon
>          Issue Type: Task
>          Components: - Servlet service framework
>            Reporter: Grzegorz Kossakowski
>         Attachments: COCOON-2176-Webapp.tar.gz
>
>
> The Servlet Service Framework depends on CocoonSourceResolver class from cocoon-core. CocoonSourceResolver class is used to resolve paths in context-path using custom source implementation, see ServletFactoryBean class for details.
>  The SSF is meant to be Cocoon-independent subproject so this dependency must be removed as soon as possible.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (COCOON-2176) Remove dependency on CocoonSourceResolver from Servlet Service Framework

Posted by "Grzegorz Kossakowski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COCOON-2176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Grzegorz Kossakowski updated COCOON-2176:
-----------------------------------------

    Description: 
The Servlet Service Framework depends on CocoonSourceResolver class from cocoon-core. CocoonSourceResolver class is used to resolve paths in context-path using custom source implementation, see ServletFactoryBean class for details.

 The SSF is meant to be Cocoon-independent subproject so this dependency must be removed as soon as possible.

  was:
The Servlet Service Framework depends on CocoonSourceResolver class from cocoon-core. CocoonSourceResolver class is used to resolve paths in context-path using custom source implementation, see ServletFactoryBean class for details.

 The SSF is meant to be Cocoon-independent subproject so this dependency must be removed as soon.


> Remove dependency on CocoonSourceResolver from Servlet Service Framework
> ------------------------------------------------------------------------
>
>                 Key: COCOON-2176
>                 URL: https://issues.apache.org/jira/browse/COCOON-2176
>             Project: Cocoon
>          Issue Type: Task
>          Components: - Servlet service framework
>            Reporter: Grzegorz Kossakowski
>
> The Servlet Service Framework depends on CocoonSourceResolver class from cocoon-core. CocoonSourceResolver class is used to resolve paths in context-path using custom source implementation, see ServletFactoryBean class for details.
>  The SSF is meant to be Cocoon-independent subproject so this dependency must be removed as soon as possible.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (COCOON-2176) Remove dependency on CocoonSourceResolver from Servlet Service Framework

Posted by "Grzegorz Kossakowski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COCOON-2176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Grzegorz Kossakowski reassigned COCOON-2176:
--------------------------------------------

    Assignee: Grzegorz Kossakowski

> Remove dependency on CocoonSourceResolver from Servlet Service Framework
> ------------------------------------------------------------------------
>
>                 Key: COCOON-2176
>                 URL: https://issues.apache.org/jira/browse/COCOON-2176
>             Project: Cocoon
>          Issue Type: Task
>          Components: - Servlet service framework
>            Reporter: Grzegorz Kossakowski
>            Assignee: Grzegorz Kossakowski
>         Attachments: COCOON-2176-Webapp.tar.gz
>
>
> The Servlet Service Framework depends on CocoonSourceResolver class from cocoon-core. CocoonSourceResolver class is used to resolve paths in context-path using custom source implementation, see ServletFactoryBean class for details.
>  The SSF is meant to be Cocoon-independent subproject so this dependency must be removed as soon as possible.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.