%@ page language="java" contentType="text/html" %>
<%@ page errorPage="errorPage.jsp" %>
<%@ page import="com.ibm.wstk.WSTKConstants" %>
WSDL documents available
WSIL Document Loader
<%
String defaultURL = "http://" + WSTKConstants.SERVER_HOSTNAME + ":" +
WSTKConstants.SERVER_PORT +
"/wstk/common/wsil/inspection.wsil" ;
%>
Enter a WSIL Document URL
WSDL Links Table
<%
String[] serviceNames = (String[])request.getAttribute("serviceNames");
String[] abstracts = (String[])request.getAttribute("abstracts");
String[] locations = (String[])request.getAttribute("locations");
String wsilDocURL = (String)request.getAttribute("inspectionDocURL");
if (locations != null)
{
%>
|
<% if (serviceNames != null)
{
%>
Service Name |
<% } %>
<% if (abstracts != null)
{
%>
Abstract |
<% } %>
Location |
<%
for (int i = 0; i < locations.length; i++)
{
%>
|
<%= i + 1%>
|
<% if (serviceNames != null)
{
%>
<%= serviceNames[i] %>
|
<% } %>
<% if (abstracts != null)
{
%>
<%= abstracts[i] %>
|
<% } %>
"> <%= locations[i] %>
|
<%
}
}
%>