Ok gents,

I have a question.

I am using Tomcat as my container for RED5

Yesterday before the update to the Trunk 1885, I had these configurations in
my red5-core.xml
to mange buffers and keepAliveTime. My red5-core.xml comes from the conf/war
folder.

I modified my to parallel the one in the Conf folder for Jetty and today
Tomcat is throwing up all over the place.

I keep getting error message and cannot connect unless I remove the items in
red below from
my red5-core.xml.

So, my question is where was this moved for Tomcat for the items in red5
below.

How now do I manage the keepAliveInterval items value="1000000"  and the
sessionConfig items below?

Thanks,

Look forward to a reply and some answers on what I am to do.

Regards,

Lenny

<!-- RTMP -->
        <bean class="org.apache.mina.integration.spring.Binding">
          <property name="address" value="${rtmp.host_port}"/>
          <property name="handler" ref="rtmpMinaIoHandler"/>
          <property name="serviceConfig">
            <bean class="
org.apache.mina.transport.socket.nio.SocketAcceptorConfig">
              <property name="filterChainBuilder"
ref="filterChainBuilder"/>
              <property name="reuseAddress" value="true"/>
              <property name="sessionConfig.receiveBufferSize"
value="65536" /><!-- 64k -->
              <property name="sessionConfig.sendBufferSize" value="271360"
/><!-- 256k -->
              <property name="sessionConfig.tcpNoDelay" value="true" />
              <property name="sessionConfig.reuseAddress" value="true"/>
            </bean>
          </property>
        </bean>




<bean id="rtmpMinaConnection" scope="prototype"
 class="org.red5.server.net.rtmp.RTMPMinaConnection">

 <property name="keepAliveInterval" value="1000000" />

 <!-- Ping clients every X ms. Set to 0 to disable ghost detection code.
-->
 <property name="pingInterval" value="5000" />
 <!-- Disconnect client after X ms of not responding. -->
 <property name="maxInactivity" value="60000" />

</bean>
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to