Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchan2008-11-06 22:49:44 +0000
committerkchan2008-11-06 22:49:44 +0000
commit632d4e26dacc33c29a91184d62314e75491fa964 (patch)
treecf815381e44565dcaca644042312d6b24b4130f6 /bundles/org.eclipse.wst.ws.explorer
parent947aae9d0d9c545a4dfa108b0cdfb34de0acc7bc (diff)
downloadwebtools.webservices-632d4e26dacc33c29a91184d62314e75491fa964.tar.gz
webtools.webservices-632d4e26dacc33c29a91184d62314e75491fa964.tar.xz
webtools.webservices-632d4e26dacc33c29a91184d62314e75491fa964.zip
[254516] Deserialization problem due to compilation errors in Web Services Explorer JSPs.
Diffstat (limited to 'bundles/org.eclipse.wst.ws.explorer')
-rw-r--r--bundles/org.eclipse.wst.ws.explorer/META-INF/MANIFEST.MF1
-rw-r--r--bundles/org.eclipse.wst.ws.explorer/wsexplorer/uddi/forms/RegFindForm.jsp3
2 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.ws.explorer/META-INF/MANIFEST.MF b/bundles/org.eclipse.wst.ws.explorer/META-INF/MANIFEST.MF
index 40ddbc938..3d7bafa08 100644
--- a/bundles/org.eclipse.wst.ws.explorer/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.wst.ws.explorer/META-INF/MANIFEST.MF
@@ -37,6 +37,7 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
org.eclipse.equinox.http.jetty,
org.eclipse.equinox.jsp.jasper.registry,
org.eclipse.equinox.http.registry,
+ javax.xml.rpc;bundle-version="[1.1.0,2.0.0)",
org.apache.commons.codec;bundle-version="[1.2.0,2.0.0)"
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/bundles/org.eclipse.wst.ws.explorer/wsexplorer/uddi/forms/RegFindForm.jsp b/bundles/org.eclipse.wst.ws.explorer/wsexplorer/uddi/forms/RegFindForm.jsp
index 71c35bcf0..e2ad2a794 100644
--- a/bundles/org.eclipse.wst.ws.explorer/wsexplorer/uddi/forms/RegFindForm.jsp
+++ b/bundles/org.eclipse.wst.ws.explorer/wsexplorer/uddi/forms/RegFindForm.jsp
@@ -11,6 +11,7 @@
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20060427 127443 jesper@selskabet.org - Jesper S Moller
+ * 20081106 254516 mahutch@ca.ibm.com - Mark Hutchinson, fix compilation error, remove duplicate variable declaration
*******************************************************************************/
%>
<%@ page contentType="text/html; charset=UTF-8" import="org.eclipse.wst.ws.internal.explorer.platform.uddi.perspective.*,
@@ -641,7 +642,7 @@
<%
String titleImagePath = "uddi/images/find_highlighted.gif";
String title;
- String subQueryKey = subQueryKeyProperty.getSubQueryKey();
+ subQueryKey = subQueryKeyProperty.getSubQueryKey();
if (subQueryKey != null && subQueryKey.length() > 0)
{
int queryItem = Integer.parseInt((String)formToolPI.getProperty(UDDIActionInputs.QUERY_ITEM));

Back to the top