<% /******************************************************************************* * Copyright (c) 2001, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ %> <%@ page contentType="text/html; charset=UTF-8" import="org.eclipse.wst.ws.internal.explorer.platform.wsdl.perspective.*, org.eclipse.wst.ws.internal.explorer.platform.wsdl.datamodel.*, org.eclipse.wst.ws.internal.explorer.platform.wsdl.constants.*, org.eclipse.wst.ws.internal.explorer.platform.perspective.Node, org.eclipse.wst.ws.internal.explorer.platform.perspective.*, java.util.*" %> <% WSDLPerspective wsdlPerspective = controller.getWSDLPerspective(); %>
<%=wsdlPerspective.getMessage("FORM_LABEL_WSDL_DETAILS_DESC")%>
 
<% Node wsdlNode = wsdlPerspective.getNodeManager().getSelectedNode(); WSDLElement wsdlElement = (WSDLElement)wsdlNode.getTreeElement(); String documentation = wsdlElement.getPropertyAsString(WSDLModelConstants.PROP_DOCUMENTATION); if (documentation != null && documentation.length() > 0) { %>
<%=documentation%>
<% } %>
<%=controller.getMessage("FORM_LABEL_WSDL_URL")%>
<%=wsdlElement.getWsdlUrl()%>
 
<% sectionHeaderInfo.clear(); sectionHeaderInfo.setContainerId("Services"); Vector serviceNodes = wsdlNode.getChildNodes(); sectionHeaderInfo.setOtherProperties(serviceNodes); %>
 
<% Vector bindingNodes = new Vector(); for (int i=0;i