You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by "Jan Moxter (JIRA)" <se...@james.apache.org> on 2011/08/25 23:02:42 UTC

[jira] [Created] (JAMES-1304) Context xml for JCR is wrong

Context xml for JCR is wrong
----------------------------

                 Key: JAMES-1304
                 URL: https://issues.apache.org/jira/browse/JAMES-1304
             Project: JAMES Server
          Issue Type: Bug
    Affects Versions: 3.0-beta3
            Reporter: Jan Moxter


Bug in the conf/context/james-mailbox-jcr-context.xml prevents usage of Java Content Repository

replace:

  <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
      <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
      <constructor-arg index="1" ref="jpa-uidProvider"/>
      <constructor-arg index="2" ref="jpa-modSeqProvider"/>
  </bean>

with:

  <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
      <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
      <constructor-arg index="1" ref="jcr-uidProvider"/>
      <constructor-arg index="2" ref="jcr-modSeqProvider"/>
  </bean>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[jira] [Commented] (JAMES-1304) Context xml for JCR is wrong

Posted by "Eric Charles (JIRA)" <se...@james.apache.org>.
    [ https://issues.apache.org/jira/browse/JAMES-1304?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13093687#comment-13093687 ] 

Eric Charles commented on JAMES-1304:
-------------------------------------

Hi Jan,
Thx a bunch for this. It is now fixed in trunk (http://svn.apache.org/viewvc?view=revision&revision=1163186)

I don't see how to fix it for beta3, expect making a new release.
I suggest you close this.


> Context xml for JCR is wrong
> ----------------------------
>
>                 Key: JAMES-1304
>                 URL: https://issues.apache.org/jira/browse/JAMES-1304
>             Project: JAMES Server
>          Issue Type: Bug
>    Affects Versions: 3.0-beta3
>            Reporter: Jan Moxter
>
> Bug in the conf/context/james-mailbox-jcr-context.xml prevents usage of Java Content Repository
> replace:
>   <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
>       <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
>       <constructor-arg index="1" ref="jpa-uidProvider"/>
>       <constructor-arg index="2" ref="jpa-modSeqProvider"/>
>   </bean>
> with:
>   <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
>       <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
>       <constructor-arg index="1" ref="jcr-uidProvider"/>
>       <constructor-arg index="2" ref="jcr-modSeqProvider"/>
>   </bean>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[jira] [Resolved] (JAMES-1304) Context xml for JCR is wrong

Posted by "Norman Maurer (Resolved) (JIRA)" <se...@james.apache.org>.
     [ https://issues.apache.org/jira/browse/JAMES-1304?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Norman Maurer resolved JAMES-1304.
----------------------------------

       Resolution: Fixed
    Fix Version/s: 3.0-beta4
         Assignee: Norman Maurer

This was fixed
                
> Context xml for JCR is wrong
> ----------------------------
>
>                 Key: JAMES-1304
>                 URL: https://issues.apache.org/jira/browse/JAMES-1304
>             Project: JAMES Server
>          Issue Type: Bug
>    Affects Versions: 3.0-beta3
>            Reporter: Jan Moxter
>            Assignee: Norman Maurer
>             Fix For: 3.0-beta4
>
>
> Bug in the conf/context/james-mailbox-jcr-context.xml prevents usage of Java Content Repository
> replace:
>   <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
>       <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
>       <constructor-arg index="1" ref="jpa-uidProvider"/>
>       <constructor-arg index="2" ref="jpa-modSeqProvider"/>
>   </bean>
> with:
>   <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
>       <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
>       <constructor-arg index="1" ref="jcr-uidProvider"/>
>       <constructor-arg index="2" ref="jcr-modSeqProvider"/>
>   </bean>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


Re: [jira] [Commented] (JAMES-1304) Context xml for JCR is wrong

Posted by Eric Charles <er...@u-mangate.com>.
yeah, we need for this to update the documentation (some config files 
have moved...), and also release mailbox-0.4 + imap-0.3, and even 
protocols-1.6 (not sure for protocols).

I will also migrate my operational server to trunk and report any issue.

Thx.

On 31/08/11 07:20, Robert Burrell Donkin (JIRA) wrote:
>
>      [ https://issues.apache.org/jira/browse/JAMES-1304?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13094561#comment-13094561 ]
>
> Robert Burrell Donkin commented on JAMES-1304:
> ----------------------------------------------
>
> Time to start pushing for beta4?
>
>> Context xml for JCR is wrong
>> ----------------------------
>>
>>                  Key: JAMES-1304
>>                  URL: https://issues.apache.org/jira/browse/JAMES-1304
>>              Project: JAMES Server
>>           Issue Type: Bug
>>     Affects Versions: 3.0-beta3
>>             Reporter: Jan Moxter
>>
>> Bug in the conf/context/james-mailbox-jcr-context.xml prevents usage of Java Content Repository
>> replace:
>>    <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
>>        <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
>>        <constructor-arg index="1" ref="jpa-uidProvider"/>
>>        <constructor-arg index="2" ref="jpa-modSeqProvider"/>
>>    </bean>
>> with:
>>    <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
>>        <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
>>        <constructor-arg index="1" ref="jcr-uidProvider"/>
>>        <constructor-arg index="2" ref="jcr-modSeqProvider"/>
>>    </bean>
>
> --
> This message is automatically generated by JIRA.
> For more information on JIRA, see: http://www.atlassian.com/software/jira
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
> For additional commands, e-mail: server-dev-help@james.apache.org
>

-- 
Eric
http://about.echarles.net

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[jira] [Commented] (JAMES-1304) Context xml for JCR is wrong

Posted by "Robert Burrell Donkin (JIRA)" <se...@james.apache.org>.
    [ https://issues.apache.org/jira/browse/JAMES-1304?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13094561#comment-13094561 ] 

Robert Burrell Donkin commented on JAMES-1304:
----------------------------------------------

Time to start pushing for beta4?

> Context xml for JCR is wrong
> ----------------------------
>
>                 Key: JAMES-1304
>                 URL: https://issues.apache.org/jira/browse/JAMES-1304
>             Project: JAMES Server
>          Issue Type: Bug
>    Affects Versions: 3.0-beta3
>            Reporter: Jan Moxter
>
> Bug in the conf/context/james-mailbox-jcr-context.xml prevents usage of Java Content Repository
> replace:
>   <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
>       <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
>       <constructor-arg index="1" ref="jpa-uidProvider"/>
>       <constructor-arg index="2" ref="jpa-modSeqProvider"/>
>   </bean>
> with:
>   <bean id="jcr-sessionMapperFactory" class="org.apache.james.mailbox.jcr.JCRMailboxSessionMapperFactory">
>       <constructor-arg index="0" ref="jcr-sessionJcrRepository"/>
>       <constructor-arg index="1" ref="jcr-uidProvider"/>
>       <constructor-arg index="2" ref="jcr-modSeqProvider"/>
>   </bean>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org