mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Mage.Stats WS module for getting server stats in json format
This commit is contained in:
parent
78c0d76088
commit
71614becc2
43 changed files with 1587 additions and 0 deletions
19
Mage.Stats/src/main/webapp/WEB-INF/web.xml
Normal file
19
Mage.Stats/src/main/webapp/WEB-INF/web.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<!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>XMage Stats Restful Web Application</display-name>
|
||||
|
||||
<filter>
|
||||
<filter-name>IPFilter</filter-name>
|
||||
<filter-class>com.xmage.ws.filter.IPFilter</filter-class>
|
||||
</filter>
|
||||
|
||||
<filter-mapping>
|
||||
<filter-name>IPFilter</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
</filter-mapping>
|
||||
|
||||
</web-app>
|
||||
5
Mage.Stats/src/main/webapp/index.jsp
Normal file
5
Mage.Stats/src/main/webapp/index.jsp
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<html>
|
||||
<body>
|
||||
<h2>Hello World!</h2>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue