Hi,

just to answer my own question: the problem was due to a dependency mismatch. I had in the pom.xml the following:

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-jdbc</artifactId>
      <version>2.5.1</version>
    </dependency>

Changing the version to 2.0.6 removed the exception.
Best,
A.


Andre Juffer wrote:
Hi All,

I experience a problem with the Cocoon authentication block, when updating from authentication-fw. The following exception is thrown:


......
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.beans.factory.config.CustomScopeConfigurer#0' defined in URL [jar:file:/home/juffer/TriBC/projects/maven/repository/org/apache/cocoon/cocoon-pipeline-impl/1.0.0/cocoon-pipeline-impl-1.0.0.jar!/META-INF/cocoon/spring/PipelineComponentScope.xml]: Cannot create inner bean 'org.apache.cocoon.components.pipeline.spring.PipelineComponentScope#442b7fc2' of type [org.apache.cocoon.components.pipeline.spring.PipelineComponentScope] while setting bean property 'scopes' with key [TypedStringValue: value [pipelineComponent], target type [null]]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cocoon.components.pipeline.spring.PipelineComponentScope#442b7fc2' defined in URL [jar:file:/home/juffer/TriBC/projects/maven/repository/org/apache/cocoon/cocoon-pipeline-impl/1.0.0/cocoon-pipeline-impl-1.0.0.jar!/META-INF/cocoon/spring/PipelineComponentScope.xml]: Initialization of bean failed; nested exception is java.lang.IllegalStateException: No Scope registered for scope 'call'


The pom.xml includes the following dependencies for cocoon-auth-api, cocoon-pipeline-api, cocoon-pipeline-impl, and cocoon-pipeline-components.

I also have the following in a xml file located in META-INF/cocoon/spring/

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd";>

<bean name="org.apache.cocoon.auth.SecurityHandler/handler" class="org.apache.cocoon.auth.impl.PipelineSecurityHandler" scope="singleton"> <property name="authenticationResource" value="cocoon:raw:/subscriptions/authenticate"/> <property name="sourceResolver" ref="org.apache.excalibur.source.SourceResolver"/>
  </bean>
<bean name="org.apache.cocoon.auth.Application/sopas" class="org.apache.cocoon.auth.StandardApplication" scope="singleton"> <property name="securityHandler" ref="org.apache.cocoon.auth.SecurityHandler/handler"/>
  </bean>
</beans>


Do I miss something?

Thanks,


--
Andre H. Juffer              | Email: [EMAIL PROTECTED]
The Biocenter and            | WWW: www.biochem.oulu.fi/Biocomputing/
    the Dep. of Biochemistry | Fax: +358-8-553-1141
University of Oulu, Finland  | Phone: +358-8-553 1161
Triacle Biocomputing         | WWW: www.triacle-bc.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to