-
Notifications
You must be signed in to change notification settings - Fork 4
/
web.xml
32 lines (27 loc) · 964 Bytes
/
web.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>GitRPCServer</display-name>
<description>Sample CML RPC</description>
<!-- Apache XmlRpc Servlet -->
<servlet>
<servlet-name>RPCAdapterServer</servlet-name>
<servlet-class>com.RPCAdapterServer</servlet-class>
<init-param>
<param-name>enabledForExtensions</param-name>
<param-value>true</param-value>
<description>
Sets, whether the servlet supports vendor extensions for XML-RPC.
</description>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>RPCAdapterServer</servlet-name>
<url-pattern>/xmlrpcserver</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>