File: red5-web.xml

package info (click to toggle)
red5 1.0~svn4374-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,456 kB
  • sloc: java: 56,478; xml: 13,069; sh: 593; makefile: 33; jsp: 24
file content (98 lines) | stat: -rw-r--r-- 3,764 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?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-2.0.xsd
                           http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd">
	
	<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
	    <property name="location" value="/WEB-INF/red5-web.properties" />
	</bean>
	
	<bean id="web.context" class="org.red5.server.Context" 
		autowire="byType" />
	
	<bean id="web.scope" class="org.red5.server.WebScope"
		 init-method="register">
		<property name="server" ref="red5.server" />
		<property name="parent" ref="global.scope" />
		<property name="context" ref="web.context" />
		<property name="handler" ref="web.handler" />
		<property name="contextPath" value="${webapp.contextPath}" />
		<property name="virtualHosts" value="${webapp.virtualHosts}" />
	</bean>
	
	<bean class="org.springframework.scripting.support.ScriptFactoryPostProcessor"/>

	<bean id="web.handler" class="org.red5.server.script.rhino.RhinoScriptFactory">
		<constructor-arg index="0" value="classpath:applications/main.js"/>
		<constructor-arg index="1">
			<list>
     			<value>org.red5.server.api.IScopeHandler</value>
     			<value>org.red5.server.adapter.IApplication</value>
  			</list>
		</constructor-arg>
		<constructor-arg index="2">
   			<value>org.red5.server.adapter.ApplicationAdapter</value>
		</constructor-arg>
	</bean>
<!-- 
	<bean id="web.handler" class="org.red5.server.script.jruby.JRubyScriptFactory">
		<constructor-arg index="0" value="classpath:applications/main.rb"/>
		<constructor-arg index="1">
			<list>
				<value>org.red5.server.api.IScopeHandler</value>
				<value>org.red5.server.adapter.IApplication</value>
			</list>
		</constructor-arg>
	</bean>		
-->
<!--
	<bean id="web.handler" class="org.red5.server.script.jython.JythonScriptFactory">
		<constructor-arg index="0" value="classpath:applications/main.py"/>
		<constructor-arg index="1">
			<list>
     			<value>org.red5.server.api.IScopeHandler</value>
     			<value>org.red5.server.adapter.IApplication</value>
  			</list>
		</constructor-arg>
	</bean>
-->

	<bean id="demoService.service" class="org.red5.server.script.rhino.RhinoScriptFactory">
		<constructor-arg index="0" value="classpath:applications/demoservice.js"/>
		<constructor-arg index="1">
			<list>
     			<value>org.red5.server.webapp.oflaDemo.IDemoService</value>
  			</list>
		</constructor-arg>
		<constructor-arg index="2">
   			<value>org.red5.server.webapp.oflaDemo.DemoServiceImpl</value>
		</constructor-arg>		
	</bean>

<!--
	<bean id="demoService.service" class="org.red5.server.script.jruby.JRubyScriptFactory">
		<constructor-arg index="0" value="classpath:applications/demoservice.rb"/>
		<constructor-arg index="1">
			<list>
     			<value>org.red5.server.webapp.oflaDemo.IDemoService</value>
  			</list>
		</constructor-arg>
	</bean>	
-->
<!--
	<bean id="demoService.service" class="org.red5.server.script.jython.JythonScriptFactory">
		<constructor-arg index="0" value="classpath:applications/demoservice.py"/>
		<constructor-arg index="1">
			<list>
				<value>org.red5.server.webapp.oflaDemo.IDemoService</value>
			</list>
		</constructor-arg>
		<constructor-arg index="2">
			<value>org.red5.server.webapp.oflaDemo.DemoServiceImpl</value>
		</constructor-arg>		
	</bean>
-->

</beans>