EVOLUTION-MANAGER
Edit File: red5.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:lang="http://www.springframework.org/schema/lang" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd"> <!-- DO NOT FORMAT THIS FILE IN ECLIPSE --> <!-- This file just wires together the context tree. Its accessed by ContextSingletonBeanFactoryLocator --> <bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:/red5.properties" /> </bean> <!-- First we load the common context, its shared between all the other contexts --> <!-- Global context serves as the parent to all child contexts. --> <bean id="red5.common" class="org.red5.spring.Red5ApplicationContext"> <property name="configLocation" value="classpath:/red5-common.xml" /> </bean> <!-- Then we load the core context, with the common as parent --> <!-- Context holding all the networking, users should not need to edit. --> <bean id="red5.core" class="org.red5.spring.Red5ApplicationContext"> <property name="configLocation" value="classpath:/red5-core.xml" /> <property name="parent" ref="red5.common" /> </bean> <!-- Then we load the global contexts, note its important this happens before app container loads --> <bean id="context.loader" class="org.red5.server.ContextLoader"> <property name="parentContext" ref="red5.common" /> <property name="contextsConfig" value="classpath:/red5.globals" /> </bean> <!-- Plug-ins management --> <bean id="pluginLauncher" class="org.red5.server.plugin.PluginLauncher" /> <!-- Now we can load the JEE container / servlet engine --> <import resource="classpath:/jee-container.xml"/> <!-- Internal shutdown mechanism --> <bean id="shutdownServer" class="org.red5.server.service.ShutdownServer"> <property name="port" value="${jmx.rmi.port}" /> <property name="shutdownDelay" value="30" /> <property name="coreContext" ref="red5.core" /> <property name="commonContext" ref="red5.common" /> <property name="contextLoader" ref="context.loader" /> </bean> </beans>