forked from HTTP-RPC/Kilo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsp
More file actions
34 lines (26 loc) · 1.15 KB
/
index.jsp
File metadata and controls
34 lines (26 loc) · 1.15 KB
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
<%@page pageEncoding="UTF-8"%>
<html>
<head>
<title>HTTP-RPC Test</title>
</head>
<body>
<a href="${pageContext.request.contextPath}/test?api">Test API</a><br/>
<a href="${pageContext.request.contextPath}/upload?api">Upload API</a><br/>
<a href="${pageContext.request.contextPath}/math?api">Math API</a><br/>
<a href="${pageContext.request.contextPath}/tree?api">Tree API</a><br/>
<a href="${pageContext.request.contextPath}/catalog?api">Catalog API</a><br/>
<a href="${pageContext.request.contextPath}/employees?api">Employees API</a><br/>
<hr/>
<a href="${pageContext.request.contextPath}/system-info?api">System Info API</a><br/>
<br/>
<a href="${pageContext.request.contextPath}/system-info">System Info</a><br/>
<hr/>
<a href="${pageContext.request.contextPath}/pets?api">Pets API</a><br/>
<br/>
<a href="${pageContext.request.contextPath}/pets?owner=Gwen">Pets (JSON)</a><br/>
<a href="${pageContext.request.contextPath}/pets?owner=Gwen&format=csv">Pets (CSV)</a><br/>
<a href="${pageContext.request.contextPath}/pets?owner=Gwen&format=html">Pets (HTML)</a><br/>
<br/>
<a href="${pageContext.request.contextPath}/pets/average-age">Average Age</a><br/>
</body>
</html>