
|
Thanks for Embedded Tomcat
Hi Paul,
Hope things are well with you these days.
Just wanted to thank you for the work you have done
with the embedded Tomcat piece in RED5.
I have it up (Trunk 2789) and running now with all my apps in
Windows and about to move it to my Ubuntu 8.04 Server.
This really opens up some promising things such as Origin / Edge
for us hardcore Tomcat users
Guess my next task will to get it working with Apache 2.2
And Tomcat Mod_jk connector.
Thanks again,
Lenny
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
How do set it up ?
On 10/05/2008, at 12:55 AM, Lenny Sorey wrote:
> Hi Paul,
>
> Hope things are well with you these days.
>
> Just wanted to thank you for the work you have done
> with the embedded Tomcat piece in RED5.
>
> I have it up (Trunk 2789) and running now with all my apps in
> Windows and about to move it to my Ubuntu 8.04 Server.
>
> This really opens up some promising things such as Origin / Edge
> for us hardcore Tomcat users
>
> Guess my next task will to get it working with Apache 2.2
> And Tomcat Mod_jk connector.
>
> Thanks again,
>
> Lenny
> _______________________________________________
> Red5 mailing list
> Red5@...
> http://osflash.org/mailman/listinfo/red5_osflash.org_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
Hi,
I would like to ask if there are any advantages over
running Red5 as a Warlet in a Tomcat container?
Thanks
David
> Hi Paul,
>
> Hope things are well with you these days.
>
> Just wanted to thank you for the work you have done
> with the embedded Tomcat piece in RED5.
>
> I have it up (Trunk 2789) and running now with all my apps in
> Windows and about to move it to my Ubuntu 8.04 Server.
>
> This really opens up some promising things such as Origin / Edge
> for us hardcore Tomcat users
>
> Guess my next task will to get it working with Apache 2.2
> And Tomcat Mod_jk connector.
>
> Thanks again,
>
> Lenny
> _______________________________________________
> Red5 mailing list
> Red5@...
> http://osflash.org/mailman/listinfo/red5_osflash.org>
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
Hi Dan,
Down around line 38 in your red.xml in your conf folder
Comment the jetty server and uncomment the Tomcat stuff.
That's it.
<!-- Now we can load the servlet engine, this has to happen after the context are loaded --> <!-- <bean id="jetty6.server" class="org.red5.server.jetty.JettyLoader" init-method="init" autowire="byType" depends-on="context.loader">
<property name="webappFolder" value="${red5.root}/webapps" /> </bean> -->
<bean id="tomcat.server" class="org.red5.server.tomcat.TomcatLoader" init-method="init" destroy-method="shutdown" autowire="byType" depends-on="context.loader">
<!- - Note: the webapp root folder must be specified before the "contexts" property - -> <property name="webappFolder" value="${red5.root}/webapps" /> <property name="embedded">
<bean class="org.apache.catalina.startup.Embedded" /> </property> <property name="engine"> <bean class="org.apache.catalina.core.StandardEngine">
<property name="name" value="red5Engine" /> <property name="defaultHost" value="localhost" /> </bean> </property>
<property name="realm"> <bean class="org.apache.catalina.realm.MemoryRealm" /> </property> <property name="connector">
<bean class="org.apache.catalina.connector.Connector"> <property name="port"><value>${http.port}</value></property> <property name="redirectPort"><value>${https.port}</value></property>
<property name="enableLookups"><value>false</value></property> </bean> </property> <property name="baseHost"> <bean class="org.apache.catalina.core.StandardHost">
<property name="name" value="localhost" /> <property name="unpackWARs" value="true" /> <property name="autoDeploy" value="true" />
<property name="xmlValidation" value="false" /> <property name="xmlNamespaceAware" value="false" /> </bean> </property>
<property name="valves"> <list> <bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve"> <property name="directory" value="log" />
<property name="prefix" value="localhost_access." /> <property name="suffix" value=".log" /> <property name="pattern" value="common" />
<property name="resolveHosts" value="false" /> <property name="rotatable" value="true" /> </bean> </list>
</property> </bean>
<!-- Default context. This can be shared between web app contexts --> <!-- <bean id="default.context" class="org.springframework.context.support.FileSystemXmlApplicationContext">
<constructor-arg><value>/webapps/red5-default.xml</value></constructor-arg> <constructor-arg><ref bean="red5.common" /></constructor-arg> </bean>
--> <!-- You can add further contexts here. This allows for multiple separate global scopes -->
On 5/9/08, Daniel Rossi <spam@...> wrote:
How do set it up ?
On 10/05/2008, at 12:55 AM, Lenny Sorey wrote:
> Hi Paul, > > Hope things are well with you these days.
> > Just wanted to thank you for the work you have done > with the embedded Tomcat piece in RED5. > > I have it up (Trunk 2789) and running now with all my apps in > Windows and about to move it to my Ubuntu 8.04 Server.
> > This really opens up some promising things such as Origin / Edge > for us hardcore Tomcat users > > Guess my next task will to get it working with Apache 2.2 > And Tomcat Mod_jk connector.
> > Thanks again, > > Lenny > _______________________________________________ > Red5 mailing list > Red5@... > http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
David,
The main plus for this is I think it will now be easier
to run the Edge/ Origin setup from the embedded Tomcat
as opposed to the Tomcat standalone Container.
Never ran RED5 as a war file in The Tomcat Container.
Never could see an advantage to doing this.
Lenny
On 5/9/08, david.engelmaier <david.engelmaier@...> wrote:
Hi,
I would like to ask if there are any advantages over running Red5 as a Warlet in a Tomcat container?
Thanks David
> Hi Paul, > > Hope things are well with you these days. > > Just wanted to thank you for the work you have done > with the embedded Tomcat piece in RED5.
> > I have it up (Trunk 2789) and running now with all my apps in > Windows and about to move it to my Ubuntu 8.04 Server. > > This really opens up some promising things such as Origin / Edge
> for us hardcore Tomcat users > > Guess my next task will to get it working with Apache 2.2 > And Tomcat Mod_jk connector. > > Thanks again, > > Lenny > _______________________________________________
> Red5 mailing list > Red5@... > http://osflash.org/mailman/listinfo/red5_osflash.org >
_______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Recorded videos stopping sometimes
Hi List,
based on the demos I have written an application to record Streams with
red5 from a flash. David Themes gave me some ideas where to look an what
to do with the scopes an the Tucam Flash sources also helped me (many
thanks for your posts hier David!!!).
Now I have a problem with the recorded streams, more exactly with red5
that ist not recording continously. Sometimes the records stop for a
second or more. For those who are interrested: All this is already in
use at www.sexyleute.de (including the sometimes stopping videos).
Does someone have an idea where I can look for? Maybe it's sufficient to
change the java parameters?!?
Thanx Dirk
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
This won't impact your application in terms of functionality. But it gives you the option to choose between web containers. On Fri, May 9, 2008 at 11:27 PM, david.engelmaier < david.engelmaier@...> wrote:
Hi,
I would like to ask if there are any advantages over
running Red5 as a Warlet in a Tomcat container?
Thanks
David
> Hi Paul,
>
> Hope things are well with you these days.
>
> Just wanted to thank you for the work you have done
> with the embedded Tomcat piece in RED5.
>
> I have it up (Trunk 2789) and running now with all my apps in
> Windows and about to move it to my Ubuntu 8.04 Server.
>
> This really opens up some promising things such as Origin / Edge
> for us hardcore Tomcat users
>
> Guess my next task will to get it working with Apache 2.2
> And Tomcat Mod_jk connector.
>
> Thanks again,
>
> Lenny
-- Best Regards Steven Gong InfraRed5 Red5 Consultant: http://www.infrared5.com, steven@...
Red5 Developer: http://osflash.org/red5, http://jira.red5.org/confluence/display/~steven/HomeJavaflash Project Founder and Maintainer: http://osflash.org/javaflash
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
Steven,
Right.
I am just now glad to have a choice. : )
Lenny
On Fri, May 9, 2008 at 6:04 PM, Steven Gong < steven.gong@...> wrote:
This won't impact your application in terms of functionality. But it gives you the option to choose between web containers.
On Fri, May 9, 2008 at 11:27 PM, david.engelmaier < david.engelmaier@...> wrote:
Hi,
I would like to ask if there are any advantages over running Red5 as a Warlet in a Tomcat container?
Thanks David
> Hi Paul, > > Hope things are well with you these days. > > Just wanted to thank you for the work you have done > with the embedded Tomcat piece in RED5. > > I have it up (Trunk 2789) and running now with all my apps in
> Windows and about to move it to my Ubuntu 8.04 Server. > > This really opens up some promising things such as Origin / Edge > for us hardcore Tomcat users > > Guess my next task will to get it working with Apache 2.2
> And Tomcat Mod_jk connector. > > Thanks again, > > Lenny
-- Best Regards Steven Gong
InfraRed5 Red5 Consultant: http://www.infrared5.com, steven@...
Red5 Developer: http://osflash.org/red5, http://jira.red5.org/confluence/display/~steven/Home
Javaflash Project Founder and Maintainer: http://osflash.org/javaflash
_______________________________________________ Red5 mailing list Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
I saw this but i thought it was already in there ! Great I will have a look.
would the accesslogvalve work for rtmp streams or just rtmpt ?
<bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve"> On 10/05/2008, at 1:55 AM, Lenny Sorey wrote: Hi Dan, Down around line 38 in your red.xml in your conf folder Comment the jetty server and uncomment the Tomcat stuff. That's it. <!-- Now we can load the servlet engine, this has to happen after the context are loaded --> <!-- <bean id="jetty6.server" class="org.red5.server.jetty.JettyLoader" init-method="init" autowire="byType" depends-on="context.loader"> <property name="webappFolder" value="${red5.root}/webapps" /> </bean> --> <bean id="tomcat.server" class="org.red5.server.tomcat.TomcatLoader" init-method="init" destroy-method="shutdown" autowire="byType" depends-on="context.loader"> <!- - Note: the webapp root folder must be specified before the "contexts" property - -> <property name="webappFolder" value="${red5.root}/webapps" /> <property name="embedded"> <bean class="org.apache.catalina.startup.Embedded" /> </property> <property name="engine"> <bean class="org.apache.catalina.core.StandardEngine"> <property name="name" value="red5Engine" /> <property name="defaultHost" value="localhost" /> </bean> </property> <property name="realm"> <bean class="org.apache.catalina.realm.MemoryRealm" /> </property> <property name="connector"> <bean class="org.apache.catalina.connector.Connector"> <property name="port"><value>${http.port}</value></property> <property name="redirectPort"><value>${https.port}</value></property> <property name="enableLookups"><value>false</value></property> </bean> </property> <property name="baseHost"> <bean class="org.apache.catalina.core.StandardHost"> <property name="name" value="localhost" /> <property name="unpackWARs" value="true" /> <property name="autoDeploy" value="true" /> <property name="xmlValidation" value="false" /> <property name="xmlNamespaceAware" value="false" /> </bean> </property>
<property name="valves"> <list> <bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve"> <property name="directory" value="log" /> <property name="prefix" value="localhost_access." /> <property name="suffix" value=".log" /> <property name="pattern" value="common" /> <property name="resolveHosts" value="false" /> <property name="rotatable" value="true" /> </bean> </list> </property> </bean> <!-- Default context. This can be shared between web app contexts --> <!-- <bean id="default.context" class="org.springframework.context.support.FileSystemXmlApplicationContext"> <constructor-arg><value>/webapps/red5-default.xml</value></constructor-arg> <constructor-arg><ref bean="red5.common" /></constructor-arg> </bean> --> <!-- You can add further contexts here. This allows for multiple separate global scopes --> On 5/9/08, Daniel Rossi <spam@...> wrote: How do set it up ?
On 10/05/2008, at 12:55 AM, Lenny Sorey wrote:
> Hi Paul, > > Hope things are well with you these days. > > Just wanted to thank you for the work you have done > with the embedded Tomcat piece in RED5. > > I have it up (Trunk 2789) and running now with all my apps in > Windows and about to move it to my Ubuntu 8.04 Server. > > This really opens up some promising things such as Origin / Edge > for us hardcore Tomcat users > > Guess my next task will to get it working with Apache 2.2 > And Tomcat Mod_jk connector. > > Thanks again, > > Lenny > _______________________________________________ > Red5 mailing list > Red5@... > http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org _______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
Believe it will work to RTM as well.
Leny
On Fri, May 9, 2008 at 6:17 PM, Daniel Rossi < spam@...> wrote:
I saw this but i thought it was already in there ! Great I will have a look.
would the accesslogvalve work for rtmp streams or just rtmpt ?
<bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve">
On 10/05/2008, at 1:55 AM, Lenny Sorey wrote:
Hi Dan,
Down around line 38 in your red.xml in your conf folder
Comment the jetty server and uncomment the Tomcat stuff.
That's it.
<!-- Now we can load the servlet engine, this has to happen after the context are loaded --> <!-- <bean id="jetty6.server" class="org.red5.server.jetty.JettyLoader" init-method="init" autowire="byType" depends-on="context.loader">
<property name="webappFolder" value="${red5.root}/webapps" /> </bean> -->
<bean id="tomcat.server" class="org.red5.server.tomcat.TomcatLoader" init-method="init" destroy-method="shutdown" autowire="byType" depends-on="context.loader">
<!- - Note: the webapp root folder must be specified before the "contexts" property - -> <property name="webappFolder" value="${red5.root}/webapps" /> <property name="embedded">
<bean class="org.apache.catalina.startup.Embedded" /> </property> <property name="engine"> <bean class="org.apache.catalina.core.StandardEngine">
<property name="name" value="red5Engine" /> <property name="defaultHost" value="localhost" /> </bean> </property>
<property name="realm"> <bean class="org.apache.catalina.realm.MemoryRealm" /> </property> <property name="connector">
<bean class="org.apache.catalina.connector.Connector"> <property name="port"><value>${http.port}</value></property> <property name="redirectPort"><value>${https.port}</value></property>
<property name="enableLookups"><value>false</value></property> </bean> </property> <property name="baseHost"> <bean class="org.apache.catalina.core.StandardHost">
<property name="name" value="localhost" /> <property name="unpackWARs" value="true" /> <property name="autoDeploy" value="true" />
<property name="xmlValidation" value="false" /> <property name="xmlNamespaceAware" value="false" /> </bean> </property>
<property name="valves"> <list> <bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve"> <property name="directory" value="log" />
<property name="prefix" value="localhost_access." /> <property name="suffix" value=".log" /> <property name="pattern" value="common" />
<property name="resolveHosts" value="false" /> <property name="rotatable" value="true" /> </bean> </list>
</property> </bean>
<!-- Default context. This can be shared between web app contexts --> <!-- <bean id="default.context" class="org.springframework.context.support.FileSystemXmlApplicationContext">
<constructor-arg><value>/webapps/red5-default.xml</value></constructor-arg> <constructor-arg><ref bean="red5.common" /></constructor-arg> </bean>
--> <!-- You can add further contexts here. This allows for multiple separate global scopes -->
On 5/9/08, Daniel Rossi <spam@...> wrote:
How do set it up ?
On 10/05/2008, at 12:55 AM, Lenny Sorey wrote:
> Hi Paul, > > Hope things are well with you these days.
> > Just wanted to thank you for the work you have done > with the embedded Tomcat piece in RED5. > > I have it up (Trunk 2789) and running now with all my apps in > Windows and about to move it to my Ubuntu 8.04 Server.
> > This really opens up some promising things such as Origin / Edge > for us hardcore Tomcat users > > Guess my next task will to get it working with Apache 2.2 > And Tomcat Mod_jk connector.
> > Thanks again, > > Lenny > _______________________________________________ > Red5 mailing list > Red5@... > http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
|

|
Re: Thanks for Embedded Tomcat
Thanks for the thanks... but the Tomcat stuff has been in the code base for at least a year ;) Lately, I have been refactoring and adding to it.. Thanks, Paul On Fri, May 9, 2008 at 4:48 PM, Daniel Rossi < spam@...> wrote:
On 10/05/2008, at 9:38 AM, Lenny Sorey wrote:
> Believe it will work to RTM as well.
>
I'll have a look in the next few days and plug it in and see !
-- It is difficult to free fools from the chains they revere. - Voltaire
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
The access logger is only for HTTP traffic, it is there as an example of how to add your own valves. Paul On Fri, May 9, 2008 at 4:17 PM, Daniel Rossi < spam@...> wrote:
I saw this but i thought it was already in there ! Great I will have a look.
would the accesslogvalve work for rtmp streams or just rtmpt ?
<bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve">
On 10/05/2008, at 1:55 AM, Lenny Sorey wrote: Hi Dan, Down around line 38 in your red.xml in your conf folder
Comment the jetty server and uncomment the Tomcat stuff. That's it. <!-- Now we can load the servlet engine, this has to happen after the context are loaded -->
<!-- <bean id="jetty6.server" class="org.red5.server.jetty.JettyLoader" init-method="init" autowire="byType" depends-on="context.loader"> <property name="webappFolder" value="${red5.root}/webapps" />
</bean> --> <bean id="tomcat.server" class="org.red5.server.tomcat.TomcatLoader" init-method="init" destroy-method="shutdown" autowire="byType" depends-on="context.loader">
<!- - Note: the webapp root folder must be specified before the "contexts" property - -> <property name="webappFolder" value="${red5.root}/webapps" /> <property name="embedded">
<bean class="org.apache.catalina.startup.Embedded" /> </property> <property name="engine"> <bean class="org.apache.catalina.core.StandardEngine">
<property name="name" value="red5Engine" /> <property name="defaultHost" value="localhost" /> </bean> </property>
<property name="realm"> <bean class="org.apache.catalina.realm.MemoryRealm" /> </property> <property name="connector">
<bean class="org.apache.catalina.connector.Connector"> <property name="port"><value>${http.port}</value></property> <property name="redirectPort"><value>${https.port}</value></property>
<property name="enableLookups"><value>false</value></property> </bean> </property> <property name="baseHost">
<bean class="org.apache.catalina.core.StandardHost"> <property name="name" value="localhost" /> <property name="unpackWARs" value="true" />
<property name="autoDeploy" value="true" /> <property name="xmlValidation" value="false" /> <property name="xmlNamespaceAware" value="false" />
</bean> </property>
<property name="valves"> <list> <bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve">
<property name="directory" value="log" /> <property name="prefix" value="localhost_access." /> <property name="suffix" value=".log" />
<property name="pattern" value="common" /> <property name="resolveHosts" value="false" /> <property name="rotatable" value="true" />
</bean> </list> </property> </bean> <!-- Default context. This can be shared between web app contexts --> <!-- <bean id="default.context"
class="org.springframework.context.support.FileSystemXmlApplicationContext"> <constructor-arg><value>/webapps/red5-default.xml</value></constructor-arg> <constructor-arg><ref bean="red5.common" /></constructor-arg>
</bean> --> <!-- You can add further contexts here. This allows for multiple separate global scopes --> On 5/9/08, Daniel Rossi <spam@...> wrote:
How do set it up ?
On 10/05/2008, at 12:55 AM, Lenny Sorey wrote:
> Hi Paul, > > Hope things are well with you these days. > > Just wanted to thank you for the work you have done
> with the embedded Tomcat piece in RED5. > > I have it up (Trunk 2789) and running now with all my apps in > Windows and about to move it to my Ubuntu 8.04 Server. > > This really opens up some promising things such as Origin / Edge
> for us hardcore Tomcat users > > Guess my next task will to get it working with Apache 2.2 > And Tomcat Mod_jk connector. > > Thanks again, > > Lenny > _______________________________________________
> Red5 mailing list > Red5@... > http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________ Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
-- It is difficult to free fools from the chains they revere. - Voltaire
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Recorded videos stopping sometimes
Hi,
does no one have an idea? My actual settings are: quality 0,85, fps 15,
keyframe every 15/f...
Regards, Dirk
Dirk Hartmann (SexyLeute.de Moderator) schrieb:
> Hi List,
>
> based on the demos I have written an application to record Streams with
> red5 from a flash. David Themes gave me some ideas where to look an what
> to do with the scopes an the Tucam Flash sources also helped me (many
> thanks for your posts hier David!!!).
> Now I have a problem with the recorded streams, more exactly with red5
> that ist not recording continously. Sometimes the records stop for a
> second or more. For those who are interrested: All this is already in
> use at www.sexyleute.de (including the sometimes stopping videos).
>
> Does someone have an idea where I can look for? Maybe it's sufficient to
> change the java parameters?!?
>
>
> Thanx Dirk
>
>
> _______________________________________________
> Red5 mailing list
> Red5@...
> http://osflash.org/mailman/listinfo/red5_osflash.org>
>
>
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|

|
Re: Thanks for Embedded Tomcat
Paul,
Guess I should have said the following:
Thanks for the refactoring along with the items
you added to the embedded Red5 Tomcat piece.
This works great. : )
I have never worked with an embedded Tomcat platform
before.
I cannot tell the difference in performance between the
standalone Tomcat version vs the embedded Tomcat version
other than the additional items such as Edge / Origin setup
that is immediately available to the Embedded Tomcat version.
Regards,
Lenny
On Fri, May 9, 2008 at 11:02 PM, Mondain < mondain@...> wrote:
Thanks for the thanks... but the Tomcat stuff has been in the code base for at least a year ;) Lately, I have been refactoring and adding to it..
Thanks, Paul
On Fri, May 9, 2008 at 4:48 PM, Daniel Rossi < spam@...> wrote:
On 10/05/2008, at 9:38 AM, Lenny Sorey wrote:
> Believe it will work to RTM as well. >
I'll have a look in the next few days and plug it in and see !
-- It is difficult to free fools from the chains they revere. - Voltaire _______________________________________________
Red5 mailing list Red5@... http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________
Red5 mailing list
Red5@...
http://osflash.org/mailman/listinfo/red5_osflash.org
|