yacy_search_server/htroot/soap/ServiceList.html
theli f20b596dc0 *) adding servlet to display all deployed SOAP Services
- soap related servlets are located in htroot/soap
*) new serverContext class for soap

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3511 6c8d7289-2bf4-0310-a012-ef5d649a1542
2007-03-22 08:30:57 +00:00

33 lines
978 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SOAP Service List</title>
#%env/templates/metas.template%#
</head>
<body>
#%env/templates/header.template%#
<h2>Deployed SOAP Services</h2>
<p>Currently #[services]# services are deployed.</p>
<table>
<tr class="TableHeader">
<td>Service name</td>
<td>Operation</td>
<td>WSDL</td>
</tr>
#{services}#<tr class="TableCell#(dark)#Light::Dark#(/dark)#">
<td><b>#[name]#</b>&nbsp;[#[style]#]</td>
<td>
<table>
#{methods}#<tr>
<td>#[name]#</td>
<td><tt>#[method]#</tt></td>
</tr>#{/methods}#
</table>
</td>
<td><a href="/soap/#[name]#?wsdl">WSDL</a></td>
</tr>#{/services}#
#%env/templates/footer.template%#
</body>
</html>