View | Details | Raw Unified | Return to bug 158366
Collapse All | Expand All

(-)wsexplorer-properties/wsdl.properties (-1 / +2 lines)
Lines 11-16 Link Here
11
# -------- -------- -----------------------------------------------------------
11
# -------- -------- -----------------------------------------------------------
12
# 20070413   176493 makandre@ca.ibm.com - Andrew Mak, WSE: Make message/transport stack pluggable
12
# 20070413   176493 makandre@ca.ibm.com - Andrew Mak, WSE: Make message/transport stack pluggable
13
# 20070507   185600 makandre@ca.ibm.com - Andrew Mak, WSE status pane's "header" twistie should not appear for responses without headers
13
# 20070507   185600 makandre@ca.ibm.com - Andrew Mak, WSE status pane's "header" twistie should not appear for responses without headers
14
# 20080825   158366 mahutch@ca.ibm.com - Mark Hutchinson
14
###############################################################################
15
###############################################################################
15
16
16
title=WSDL
17
title=WSDL
Lines 93-99 Link Here
93
FORM_LABEL_NAME=Name
94
FORM_LABEL_NAME=Name
94
FORM_LABEL_DOCUMENTATION=Documentation
95
FORM_LABEL_DOCUMENTATION=Documentation
95
FORM_LABEL_ENDPOINT=Endpoint
96
FORM_LABEL_ENDPOINT=Endpoint
96
FORM_LABEL_INVOKE_WSDL_OPERATION_DESC=Enter the parameters of this WSDL operation and click <strong>Go</Strong> to invoke.
97
FORM_LABEL_INVOKE_WSDL_OPERATION_DESC=Enter the parameters for the WSDL operation "%1" and click <strong>Go</Strong> to invoke.
97
FORM_LABEL_INVOKE_WSDL_OPERATION_DESC_NO_INPUT=There are no input parameters for the WSDL operation "%1". Click <strong>Go</Strong> to invoke.
98
FORM_LABEL_INVOKE_WSDL_OPERATION_DESC_NO_INPUT=There are no input parameters for the WSDL operation "%1". Click <strong>Go</Strong> to invoke.
98
FORM_LINK_ADD=Add
99
FORM_LINK_ADD=Add
99
FORM_LINK_REMOVE=Remove
100
FORM_LINK_REMOVE=Remove
(-)wsexplorer/wsdl/forms/InvokeWSDLOperationForm.jsp (-1 / +2 lines)
Lines 12-17 Link Here
12
 * -------- -------- -----------------------------------------------------------
12
 * -------- -------- -----------------------------------------------------------
13
 * 20060512   121210 mahutch@ca.ibm.com - Mark Hutchinson
13
 * 20060512   121210 mahutch@ca.ibm.com - Mark Hutchinson
14
 * 20070305   117034 makandre@ca.ibm.com - Andrew Mak, Web Services Explorer should support SOAP Headers 
14
 * 20070305   117034 makandre@ca.ibm.com - Andrew Mak, Web Services Explorer should support SOAP Headers 
15
 * 20080825   158366 mahutch@ca.ibm.com - Mark Hutchinson
15
 *******************************************************************************/
16
 *******************************************************************************/
16
%>
17
%>
17
<%@ page contentType="text/html; charset=UTF-8" import="org.eclipse.wst.ws.internal.explorer.platform.wsdl.perspective.*,
18
<%@ page contentType="text/html; charset=UTF-8" import="org.eclipse.wst.ws.internal.explorer.platform.wsdl.perspective.*,
Lines 145-151 Link Here
145
      	}
146
      	}
146
		if (hasInput || !operElement.getSOAPHeaders().isEmpty())
147
		if (hasInput || !operElement.getSOAPHeaders().isEmpty())
147
		{
148
		{
148
			out.print(wsdlPerspective.getMessage("FORM_LABEL_INVOKE_WSDL_OPERATION_DESC"));
149
			out.print(wsdlPerspective.getMessage("FORM_LABEL_INVOKE_WSDL_OPERATION_DESC", operationName));
149
		}
150
		}
150
		else
151
		else
151
		{
152
		{

Return to bug 158366