Does this mean that the dependencies can go like this?

  <mbean code="org.jboss.ha.framework.server.ClusterPartition"
name="JBOSS-SYSTEM:service=DefaultPartition">
  </mbean>

   <mbean code="org.jboss.ha.hasessionstate.server.HASessionStateService"
name="JBOSS-SYSTEM:service=HASessionState">
      <mbean-ref>JBOSS-SYSTEM:service=DefaultPartition</mbean-ref>
  </mbean>


  <mbean code="org.jboss.ha.jndi.HANamingService"
name="JBOSS-SYSTEM:service=HAJNDI">
      <mbean-ref>JBOSS-SYSTEM:service=DefaultPartition</mbean-ref>
  </mbean>


rather than like this:


  <mbean code="org.jboss.ha.framework.server.ClusterPartition"
name="JBOSS-SYSTEM:service=DefaultPartition">
    <mbean-ref-list name="SynchronizedMBeans">
      
<mbean-ref-list-element>JBOSS-SYSTEM:service=HASessionState</mbean-ref-list-element>
      <mbean-ref-list-element>JBOSS-SYSTEM:service=HAJNDI</mbean-ref-list-element>
    </mbean-ref-list>
  </mbean>

   <mbean code="org.jboss.ha.hasessionstate.server.HASessionStateService"
name="JBOSS-SYSTEM:service=HASessionState">
  </mbean>


  <mbean code="org.jboss.ha.jndi.HANamingService"
name="JBOSS-SYSTEM:service=HAJNDI">
  </mbean>

?

How soon? Would you like a fix for the current situation based on the
second example which is more or less how the system works now (I think I
have such a fix nearly working, but it's always hard to know what "nearly"
means) or is it ok to wait for the first method based on possible
JavaGroups changes?

Thanks
david jencks


On 2001.11.13 03:23:23 -0500 Sacha Labourey wrote:
> Hello,
> 
> > Unfortunately at this moment in time it is not possible to hot-deploy a
> > clustered service that depends on state-transfer.  You can hot-deploy
> > clustered EJBs though, well at least for SLSB and EBs. Sacha, what
> about
> > SFSBs?
> 
> Yes, it is possible.
> 
> Next step on my todo list is to speak with Bela about how to implement
> clean
> "local" state transfer and merge protocols. Once done, this should solve
> our
> problems.
> 
> BTW Bill, have you seen that JG 1.0 is out with some bug fixes and new
> features (such as merge2 protocol layer)
> 
> cheers,
> 
> 
> 
>                               Sacha
> 
> 
> 

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to