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:
authorcbrealey2005-07-19 22:57:43 +0000
committercbrealey2005-07-19 22:57:43 +0000
commit5095c62bc0bdd2e67ac25debfecc96fe8cb0ce5c (patch)
treeec0478e2d7fbed25b939f874d300c2848fdb9590 /bundles/org.eclipse.jst.ws.consumption.ui/src
parentf86c9a772229c05875034c5485da7f6166a429a4 (diff)
downloadwebtools.webservices-5095c62bc0bdd2e67ac25debfecc96fe8cb0ce5c.tar.gz
webtools.webservices-5095c62bc0bdd2e67ac25debfecc96fe8cb0ce5c.tar.xz
webtools.webservices-5095c62bc0bdd2e67ac25debfecc96fe8cb0ce5c.zip
[104420] Bad validation error on page 3 of the Web service client wizard
Diffstat (limited to 'bundles/org.eclipse.jst.ws.consumption.ui/src')
-rw-r--r--bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidget.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidget.java b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidget.java
index 0e4ad0a16..014d8e290 100644
--- a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidget.java
+++ b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidget.java
@@ -344,8 +344,8 @@ public class ClientRuntimeSelectionWidget extends SimpleWidgetDataContributor
ValidationUtils valUtils = new ValidationUtils();
if (clientProjects != null)
{
- String clientEARName = clientProjects.getChoice().getList().getSelection();
- String clientProjName = clientProjects.getList().getSelection();
+ String clientEARName = getClientEarProjectName();
+ String clientProjName = getClientProjectName();
String clientCompName = projectWidget_.getComponentName();
String clientEARCompName = projectWidget_.getEarComponentName();

Back to the top