You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by Alex Karasulu <ao...@bellsouth.net> on 2006/11/02 22:58:39 UTC

[Mitosis] Does not start up properly

Hey Trustin,

I fixed a couple bugs with mitosis but it seems the configuration is not 
working as was documented.  Here's what I was using:

       <bean 
class="org.apache.directory.server.core.configuration.MutableInterceptorConfiguration">
         <property name="name"><value>replicationService</value></property>
         <property name="interceptor">
           <bean 
class="org.apache.directory.mitosis.service.ReplicationService">
             <property name="configuration">
               <bean 
class="org.apache.directory.mitosis.configuration.ReplicationConfiguration">
                 <property 
name="replicaId"><value>instance_a</value></property>
                 <property name="serverPort"><value>7846</value></property>
                 <property 
name="peerReplicas"><value>instance_b@localhost:7846</value></property>
<!--
                 <property 
name="peerReplicas"><value>instance_c@localhost:7846</value></property>
-->
               </bean>
             </property>
           </bean>
         </property>
       </bean>

Now this is bombing out with a big stack trace although things are 
getting further.  I'll keep working on it but I have a couple of questions:

1). Seems like spring does not like using a property twice for the 
peerReplicas.  Is there something wrong in the configuration here?

2). Were you able to get mitosis working at any point with this 
configuration?

Alex