Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 119111 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/wst/ws/internal/extensions/DeployClientFragment.java (-4 / +7 lines)
Lines 1-12 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2005 IBM Corporation and others.
2
 * Copyright (c) 2005, 2006 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
7
 *
8
 * Contributors:
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
9
 * IBM Corporation - initial API and implementation
10
 * yyyymmdd bug      Email and other contact information
11
 * -------- -------- -----------------------------------------------------------
12
 * 20060221   119111 rsinha@ca.ibm.com - Rupam Kuehner
10
 *******************************************************************************/
13
 *******************************************************************************/
11
14
12
package org.eclipse.wst.ws.internal.extensions;
15
package org.eclipse.wst.ws.internal.extensions;
Lines 36-42 Link Here
36
  {
39
  {
37
	ICommandFactory factory = null;
40
	ICommandFactory factory = null;
38
	
41
	
39
	if( webServiceClient_ == null )
42
	if( webServiceClient_ == null || !context_.getDeploy())
40
	{
43
	{
41
	  factory = new SimpleCommandFactory( new Vector() );
44
	  factory = new SimpleCommandFactory( new Vector() );
42
	}
45
	}
(-)src/org/eclipse/wst/ws/internal/extensions/DeployServiceFragment.java (-4 / +7 lines)
Lines 1-12 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2005 IBM Corporation and others.
2
 * Copyright (c) 2005, 2006 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
7
 *
8
 * Contributors:
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
9
 * IBM Corporation - initial API and implementation
10
 * yyyymmdd bug      Email and other contact information
11
 * -------- -------- -----------------------------------------------------------
12
 * 20060221   119111 rsinha@ca.ibm.com - Rupam Kuehner
10
 *******************************************************************************/
13
 *******************************************************************************/
11
14
12
package org.eclipse.wst.ws.internal.extensions;
15
package org.eclipse.wst.ws.internal.extensions;
Lines 36-42 Link Here
36
  {
39
  {
37
	ICommandFactory factory = null;
40
	ICommandFactory factory = null;
38
	
41
	
39
	if( webService_ == null )
42
	if( webService_ == null || !context_.getDeploy())
40
	{
43
	{
41
	  factory = new SimpleCommandFactory( new Vector() );
44
	  factory = new SimpleCommandFactory( new Vector() );
42
	}
45
	}

Return to bug 119111