Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormhutchinson2011-01-19 16:41:39 +0000
committermhutchinson2011-01-19 16:41:39 +0000
commitffd66feac23632e26e32e4323ce4d06a93df0c8e (patch)
treee7203b9458db603a2d9ef7742ecfd8fbc8d0f880
parent0db97da454c7ce9e15b8ad730dcb2c5c8d8ff91f (diff)
downloadwebtools.webservices-ffd66feac23632e26e32e4323ce4d06a93df0c8e.tar.gz
webtools.webservices-ffd66feac23632e26e32e4323ce4d06a93df0c8e.tar.xz
webtools.webservices-ffd66feac23632e26e32e4323ce4d06a93df0c8e.zip
[334706] Web Service Wizard: Error: Template has not been defined
-rw-r--r--bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidgetDefaultingCommand.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidgetDefaultingCommand.java b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidgetDefaultingCommand.java
index b2e7316e5..358e599c2 100644
--- a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidgetDefaultingCommand.java
+++ b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidgetDefaultingCommand.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2010 IBM Corporation and others.
+ * Copyright (c) 2007, 2011 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
@@ -19,6 +19,7 @@
* 20080527 234226 kathy@ca.ibm.com - Kathy Chan
* 20080731 242721 kathy@ca.ibm.com - Kathy Chan
* 20100929 326549 mahutch@ca.ibm.com - Mark Hutchinson, Web Service Wizard Can Default to invalid project type
+ * 20110118 334706 mahutch@ca.ibm.com - Mark Hutchinson, Web Service Wizard: Error: Template has not been defined
*******************************************************************************/
package org.eclipse.jst.ws.internal.consumption.ui.widgets.runtime;
@@ -1317,7 +1318,7 @@ public class ClientRuntimeSelectionWidgetDefaultingCommand extends AbstractDataM
if (clientProject.exists())
{
clientComponentType_ = "";
- clientRuntimeId_ = WebServiceRuntimeExtensionUtils2.getClientRuntimeId(testIds, serviceProjectName, clientComponentType_);
+ clientRuntimeId_ = WebServiceRuntimeExtensionUtils2.getClientRuntimeId(testIds, clientProjectName_, clientComponentType_);
if (clientRuntimeId_ != null && clientRuntimeId_.length()>0)
{
clientIds_.setRuntimeId(serviceIds.getRuntimeId());

Back to the top