1
|
<html>
|
2
|
<%@ page contentType="text/html; charset=utf-8" %>
|
3
|
<%
|
4
|
/*
|
5
|
* Copyright 2005 The Apache Software Foundation.
|
6
|
*
|
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
* you may not use this file except in compliance with the License.
|
9
|
* You may obtain a copy of the License at
|
10
|
*
|
11
|
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
*
|
13
|
* Unless required by applicable law or agreed to in writing, software
|
14
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
* See the License for the specific language governing permissions and
|
17
|
* limitations under the License.
|
18
|
*/
|
19
|
%>
|
20
|
|
21
|
<%@ include file="i18nLib.jsp" %>
|
22
|
|
23
|
<%
|
24
|
// initialize a private HttpServletRequest
|
25
|
setRequest(request);
|
26
|
|
27
|
// set a resouce base
|
28
|
setResouceBase("i18n");
|
29
|
%>
|
30
|
|
31
|
<head>
|
32
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
33
|
<title>Apache-Axis</title>
|
34
|
</head>
|
35
|
|
36
|
<body bgcolor="#FFFFFF">
|
37
|
|
38
|
<h1 align="center">Apache-AXIS</h1>
|
39
|
|
40
|
<%= getLocaleChoice() %>
|
41
|
|
42
|
<%
|
43
|
out.print(getMessage("welcomeMessage")+"<p/>");
|
44
|
out.print(getMessage("operationType"));
|
45
|
%>
|
46
|
|
47
|
<ul>
|
48
|
|
49
|
<li>
|
50
|
<%
|
51
|
out.print("<a href=\""+ getMessage("validationURL") +"\">");
|
52
|
out.print(getMessage("validation") +"</a> - ");
|
53
|
out.print(getMessage("validationFootnote00") +"<br>");
|
54
|
out.print("<i>"+ getMessage("validationFootnote01") +"</i>");
|
55
|
%>
|
56
|
</li>
|
57
|
|
58
|
<li>
|
59
|
<%
|
60
|
out.print("<a href=\""+ getMessage("serviceListURL") +"\">");
|
61
|
out.print(getMessage("serviceList") +"</a> - ");
|
62
|
out.print(getMessage("serviceListFootnote"));
|
63
|
%>
|
64
|
</li>
|
65
|
|
66
|
<li>
|
67
|
<%
|
68
|
out.print("<a href=\""+ getMessage("callAnEndpointURL") +"\">");
|
69
|
out.print(getMessage("callAnEndpoint") +"</a> - ");
|
70
|
out.print(getMessage("callAnEndpointFootnote00") +" ");
|
71
|
out.print(getMessage("callAnEndpointFootnote01"));
|
72
|
%>
|
73
|
</li>
|
74
|
|
75
|
<li>
|
76
|
<%
|
77
|
out.print("<a href=\""+ getMessage("visitURL") +"\">");
|
78
|
out.print(getMessage("visit") +"</a> - ");
|
79
|
out.print(getMessage("visitFootnote"));
|
80
|
%>
|
81
|
</li>
|
82
|
|
83
|
<li>
|
84
|
<%
|
85
|
out.print("<a href=\""+ getMessage("adminURL") +"\">");
|
86
|
out.print(getMessage("admin") +"</a> - ");
|
87
|
out.print(getMessage("adminFootnote"));
|
88
|
%>
|
89
|
</li>
|
90
|
|
91
|
<li>
|
92
|
<%
|
93
|
out.print("<a href=\""+ getMessage("soapMonitorURL") +"\">");
|
94
|
out.print(getMessage("soapMonitor") +"</a> - ");
|
95
|
out.print(getMessage("soapMonitorFootnote"));
|
96
|
%>
|
97
|
</li>
|
98
|
|
99
|
</ul>
|
100
|
|
101
|
<%
|
102
|
out.print(getMessage("sideNote") +"<p/>");
|
103
|
%>
|
104
|
|
105
|
<%
|
106
|
out.print("<h3>"+ getMessage("validatingAxis") +"</h3>");
|
107
|
|
108
|
out.print(getMessage("validationNote00") +"<p/>");
|
109
|
out.print(getMessage("validationNote01"));
|
110
|
%>
|
111
|
</body>
|
112
|
</html>
|