You recall that you recently changed the tx.xml conf for Howl from :

<bean id="transactionLog" class= 
"org.apache.geronimo.transaction.log.HOWLLog">
    <contructor-arg value="org.objectweb.howl.log.BlockLogBuffer"/> 
    <contructor-arg value="32"/> 
    <construcor-arg value="true"/>
    <construcor-arg value="50"/> 
    <construcor-arg value="var/txlog"/> 
    <construcor-arg value="log"/> 
    <construcor-arg value="howl"/>
    <construcor-arg value="-1"/>
    <construcor-arg value="0"/> 
    <construcor-arg value="2"/> 
    <construcor-arg value="4"/> 
    <construcor-arg value="-1"/> 
    <construcor-arg> 
      <bean class= 
"org.apache.geronimo.transaction.manager.XidFactoryImpl"/>
    </constructor-arg>
    <construcor-arg> 
      <bean class="org.apache.geronimo.system.serverinfo.ServerInfo">
          <constructor-arg value="var/geronimo"/>
      </bean>
    </constructor-arg>
  </bean>

to :

  <bean id="transactionLog" class= 
"org.jencks.factory.HowlLogFactoryBean">
    <property name="logFileDir" value="./data/txlog" />
    <property name="xidFactory" ref="xidFactory" />
  </bean>

I can't seem to locate org.jencks.factory.HowlLogFactoryBean?

It's shown in the Jencks CVS tree, but I can't find it in any of the 
compiled libraries and it's not on the classpath for ServiceMix.

Terry

Reply via email to