[118097] strip out install and run from Ant scenario root fragments.
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/plugin.xml b/bundles/org.eclipse.jst.ws.consumption.ui/plugin.xml
index b249ea2..71ea7db 100644
--- a/bundles/org.eclipse.jst.ws.consumption.ui/plugin.xml
+++ b/bundles/org.eclipse.jst.ws.consumption.ui/plugin.xml
@@ -775,23 +775,6 @@
               operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.extensions.ClientExtensionFragment"
               property="ClientTypeRuntimeServer"
               transform="org.eclipse.jst.ws.internal.common.String2TypeRuntimeServerModifier"/>                
-        <map
-              key="TestId"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.test.ClientTestDelegateCommand"
-              property="TestFacility"
-              transform="org.eclipse.jst.ws.internal.common.String2TestFacilityListTransformer"/>                
-		<map
-              key="Folder"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.test.ClientTestDelegateCommand"
-              property="Folder"/>     
-		<map
-              key="TestService"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.test.FinishTestFragment"
-              property="TestService"/>  
-        <map
-              key="TestId"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.test.FinishTestFragment"
-              property="TestID"/>  
               
          <!-- mappings for listing options -->
         <map
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/ant/AntClientRootCommandFragment.java b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/ant/AntClientRootCommandFragment.java
index 923d122..12e2438 100644
--- a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/ant/AntClientRootCommandFragment.java
+++ b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/ant/AntClientRootCommandFragment.java
@@ -10,10 +10,8 @@
  *******************************************************************************/
 package org.eclipse.jst.ws.internal.consumption.ui.ant;
 
-import org.eclipse.wst.command.internal.env.core.fragment.SequenceFragment;
-import org.eclipse.jst.ws.internal.consumption.command.common.GetMonitorCommand;
 import org.eclipse.jst.ws.internal.consumption.common.ScenarioCleanupCommand;
-import org.eclipse.jst.ws.internal.consumption.ui.command.AntDefaultingFragment;
+import org.eclipse.jst.ws.internal.consumption.ui.command.AntDefaultingOperation;
 import org.eclipse.jst.ws.internal.consumption.ui.command.CheckForServiceProjectCommand;
 import org.eclipse.jst.ws.internal.consumption.ui.command.ListOptionsCommand;
 import org.eclipse.jst.ws.internal.consumption.ui.command.data.EclipseIPath2URLStringTransformer;
@@ -32,16 +30,12 @@
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.ClientTestDelegateCommand;
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.ClientTestFragment;
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.FinishDefaultCommand;
-import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.FinishTestFragment;
-import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.TestDefaultingFragment;
-import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.WebServiceClientTestArrivalCommand;
-import org.eclipse.wst.command.internal.env.core.fragment.SimpleFragment;
 import org.eclipse.wst.command.internal.env.core.data.DataMappingRegistry;
+import org.eclipse.wst.command.internal.env.core.fragment.SequenceFragment;
+import org.eclipse.wst.command.internal.env.core.fragment.SimpleFragment;
 import org.eclipse.wst.ws.internal.extensions.AssembleClientFragment;
 import org.eclipse.wst.ws.internal.extensions.DeployClientFragment;
 import org.eclipse.wst.ws.internal.extensions.DevelopClientFragment;
-import org.eclipse.wst.ws.internal.extensions.InstallClientFragment;
-import org.eclipse.wst.ws.internal.extensions.RunClientFragment;
 
 /**
  * 
@@ -63,7 +57,7 @@
   add( new SimpleFragment( new ScenarioCleanupCommand(), "" ));
   
   add( new SimpleFragment(new ListOptionsCommand(), ""));
-  add (new AntDefaultingFragment());  
+  add (new SimpleFragment(new AntDefaultingOperation(), ""));
   
   add( new SimpleFragment( new ClientWizardWidgetDefaultingCommand(), "" ) );
   add( new SimpleFragment( new ClientWizardWidgetOutputCommand(), "" ));
@@ -77,9 +71,6 @@
   add( new ClientRootFragment() );
   add( new SimpleFragment( new ClientExtensionOutputCommand(), "" ) );
  
-  add( new SimpleFragment(new GetMonitorCommand(), ""));
-  add( new SimpleFragment(new TestDefaultingFragment(),""));
-  add( new ClientTestFragment( "ClientTestWidget") ); 
   add(new FinishFragment());
   
   add( new SimpleFragment( new ScenarioCleanupCommand(), "" ));
@@ -94,7 +85,6 @@
       // Map ClientWizardWidgetDefaultingCommand command.
       dataRegistry.addMapping(ClientWizardWidgetDefaultingCommand.class, "ClientTypeRuntimeServer", ClientWizardWidgetOutputCommand.class);
       dataRegistry.addMapping(ClientWizardWidgetDefaultingCommand.class, "TestService", ClientWizardWidgetOutputCommand.class);
-      dataRegistry.addMapping(ClientWizardWidgetDefaultingCommand.class, "MonitorService", ClientWizardWidgetOutputCommand.class);
       dataRegistry.addMapping(ClientWizardWidgetDefaultingCommand.class, "ResourceContext", ClientWizardWidgetOutputCommand.class);
       
       // Map ClientWizardWidgetOutputCommand command.
@@ -104,7 +94,6 @@
       dataRegistry.addMapping(WSDLSelectionOutputCommand.class, "TestService", ClientRuntimeSelectionWidgetDefaultingCommand.class);           
       dataRegistry.addMapping(ClientWizardWidgetOutputCommand.class, "ResourceContext", ClientRuntimeSelectionWidgetDefaultingCommand.class);      
       dataRegistry.addMapping(ClientWizardWidgetOutputCommand.class, "ResourceContext", ClientExtensionDefaultingCommand.class);
-      dataRegistry.addMapping(ClientWizardWidgetOutputCommand.class, "MonitorService", GetMonitorCommand.class);
       
       // Map ClientRuntimeSelectionWidgetDefaultingCommand command
       dataRegistry.addMapping(ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientTypeRuntimeServer", ClientExtensionDefaultingCommand.class);
@@ -119,9 +108,11 @@
       dataRegistry.addMapping(ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientNeedEAR", ClientExtensionDefaultingCommand.class);
       dataRegistry.addMapping(ClientRuntimeSelectionWidgetDefaultingCommand.class, "Runtime2ClientTypes", CheckForServiceProjectCommand.class);
       
-      //Map AntDefaultingFragment      
-      dataRegistry.addMapping(AntDefaultingFragment.class, "ClientIdsFixed", ClientRuntimeSelectionWidgetDefaultingCommand.class);
-      
+//    Map AntDefaultingOperation      
+      dataRegistry.addMapping(AntDefaultingOperation.class, "ClientIdsFixed", ClientRuntimeSelectionWidgetDefaultingCommand.class);
+      dataRegistry.addMapping(AntDefaultingOperation.class, "StartService", PreClientDevelopCommand.class);
+      dataRegistry.addMapping(AntDefaultingOperation.class, "InstallClient", PreClientDevelopCommand.class);        
+          
       // Map WSDLSelectionWidgetDefaultingCommand command.
       dataRegistry.addMapping(WSDLSelectionWidgetDefaultingCommand.class, "GenWSIL", ClientExtensionDefaultingCommand.class);
       dataRegistry.addMapping(WSDLSelectionWidgetDefaultingCommand.class, "WsilURI", ClientExtensionDefaultingCommand.class);
@@ -132,8 +123,6 @@
       // WSDLSelectionOutputCommand
       dataRegistry.addMapping(WSDLSelectionOutputCommand.class, "WsdlURI", ClientExtensionDefaultingCommand.class);
       dataRegistry.addMapping(WSDLSelectionOutputCommand.class, "WebServicesParser", ClientExtensionDefaultingCommand.class);
-      dataRegistry.addMapping(WSDLSelectionOutputCommand.class, "WsdlURI", GetMonitorCommand.class);
-      dataRegistry.addMapping(WSDLSelectionOutputCommand.class, "WebServicesParser", GetMonitorCommand.class);
       dataRegistry.addMapping(WSDLSelectionOutputCommand.class, "Project", ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientInitialProject", null);
       dataRegistry.addMapping(WSDLSelectionOutputCommand.class, "WsdlURI", ClientRuntimeSelectionWidgetDefaultingCommand.class);
       dataRegistry.addMapping(WSDLSelectionOutputCommand.class, "ComponentName", ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientInitialComponentName", null);
@@ -156,14 +145,8 @@
       dataRegistry.addMapping( PreClientDevelopCommand.class, "WebService", ClientExtensionOutputCommand.class, "WebServiceClient", null );
 			
       // Map ClientExtensionDefaultingCommand command.
-      dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientTypeRuntimeServer", ClientExtensionFragment.class);
-           
-	  dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientProjectEAR", WebServiceClientTestArrivalCommand.class);
-	  dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientProject", WebServiceClientTestArrivalCommand.class);
-            
+      dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientTypeRuntimeServer", ClientExtensionFragment.class);          
       dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "GenerateProxy", ClientTestFragment.class);
-      dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "TestService", ClientTestFragment.class );     
-      
       dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientNeedEAR", ClientTestDelegateCommand.class);
 	  dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientEarProjectName", ClientTestDelegateCommand.class);
 	  dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientEarComponentName", ClientTestDelegateCommand.class);
@@ -172,30 +155,11 @@
       dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "WsdlURI", ClientTestDelegateCommand.class);
       
       // Map ClientExtensionOutputCommand command.
-      dataRegistry.addMapping(ClientExtensionOutputCommand.class, "ProxyBean", WebServiceClientTestArrivalCommand.class);      
-	  dataRegistry.addMapping(ClientExtensionOutputCommand.class, "ProxyBean", ClientTestDelegateCommand.class);      
-      dataRegistry.addMapping(ClientExtensionOutputCommand.class, "GenerateProxy", ClientTestFragment.class);
-      dataRegistry.addMapping(ClientExtensionOutputCommand.class, "GenerateProxy", FinishTestFragment.class);
-      dataRegistry.addMapping(ClientExtensionOutputCommand.class, "GenerateProxy", ClientTestDelegateCommand.class);
-      dataRegistry.addMapping(ClientExtensionOutputCommand.class, "SetEndpointMethod", ClientTestDelegateCommand.class);
 	  dataRegistry.addMapping(ClientExtensionOutputCommand.class, "ServerInstanceId", FinishDefaultCommand.class);
-	  
-      // GetMonitorCommand
-      dataRegistry.addMapping(GetMonitorCommand.class, "Endpoints", ClientTestDelegateCommand.class);
 
       // MAP post server config call      
       dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientProjectEAR", ClientExtensionOutputCommand.class, "EarProjectName", null);
-      dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientServerInstance", ClientExtensionOutputCommand.class, "ExistingServerId", null);
-      
-      // Map WebServiceClientTestArrivalCommand command.
-      dataRegistry.addMapping(TestDefaultingFragment.class, "TestFacility",ClientTestDelegateCommand.class);
-      dataRegistry.addMapping(WebServiceClientTestArrivalCommand.class, "TestFacility",ClientTestDelegateCommand.class);
-      dataRegistry.addMapping(WebServiceClientTestArrivalCommand.class, "Folder",ClientTestDelegateCommand.class);
-      dataRegistry.addMapping(WebServiceClientTestArrivalCommand.class, "JspFolder",ClientTestDelegateCommand.class);
-      dataRegistry.addMapping(WebServiceClientTestArrivalCommand.class, "RunClientTest",ClientTestDelegateCommand.class);
-      dataRegistry.addMapping(WebServiceClientTestArrivalCommand.class, "Methods",ClientTestDelegateCommand.class);
-      dataRegistry.addMapping(WebServiceClientTestArrivalCommand.class, "SampleProject",ClientTestDelegateCommand.class);
-      dataRegistry.addMapping(WebServiceClientTestArrivalCommand.class, "SampleProjectEAR",ClientTestDelegateCommand.class);
+      dataRegistry.addMapping(ClientExtensionDefaultingCommand.class, "ClientServerInstance", ClientExtensionOutputCommand.class, "ExistingServerId", null);     
             
       //Mappings to enable peek-ahead for Page 3 of the client wizard
       dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "WebService", DevelopClientFragment.class );  
@@ -223,24 +187,7 @@
       dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientProjectName", DeployClientFragment.class, "Project", null );
       dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientComponentName", DeployClientFragment.class, "Module", null );  
       dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientEarProjectName", DeployClientFragment.class, "EarProject", null );
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientEarComponentName", DeployClientFragment.class, "Ear", null );
-    
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "WebService", InstallClientFragment.class );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "Environment", InstallClientFragment.class );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "Context", InstallClientFragment.class );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "Selection", InstallClientFragment.class );
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientProjectName", InstallClientFragment.class, "Project", null );
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientComponentName", InstallClientFragment.class, "Module", null );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientEarProjectName", InstallClientFragment.class, "EarProject", null );
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientEarComponentName", InstallClientFragment.class, "Ear", null );
-    
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "WebService", RunClientFragment.class );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "Environment", RunClientFragment.class );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "Context", RunClientFragment.class );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "Selection", RunClientFragment.class );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientProjectName", RunClientFragment.class, "Project", null );
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientComponentName", RunClientFragment.class, "Module", null );  
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientEarProjectName", RunClientFragment.class, "EarProject", null );
-      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientEarComponentName", RunClientFragment.class, "Ear", null );     
+      dataRegistry.addMapping( ClientRuntimeSelectionWidgetDefaultingCommand.class, "ClientEarComponentName", DeployClientFragment.class, "Ear", null );  
+          
    }        
 }
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/command/AntDefaultingFragment.java b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/command/AntDefaultingFragment.java
deleted file mode 100644
index 4adad38..0000000
--- a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/command/AntDefaultingFragment.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package org.eclipse.jst.ws.internal.consumption.ui.command;
-
-import org.eclipse.wst.command.internal.env.core.fragment.SequenceFragment;
-
-public class AntDefaultingFragment extends SequenceFragment{
-
-	
-	public boolean getServiceIdsFixed()
-	{
-		return true;
-	}
-
-	public boolean getClientIdsFixed()
-	{
-		return true;
-	}
-	
-	public boolean getStartService()
-	{
-		return false;	
-	}
-	
-	public boolean getInstallService()
-	{
-		return false;
-	}
-}
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/command/AntDefaultingOperation.java b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/command/AntDefaultingOperation.java
new file mode 100644
index 0000000..9e0dfc0
--- /dev/null
+++ b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/command/AntDefaultingOperation.java
@@ -0,0 +1,36 @@
+package org.eclipse.jst.ws.internal.consumption.ui.command;
+
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.core.runtime.IAdaptable;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.wst.common.frameworks.datamodel.AbstractDataModelOperation;
+
+public class AntDefaultingOperation extends AbstractDataModelOperation{
+
+	public IStatus execute(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
+		// TODO Auto-generated method stub
+		return Status.OK_STATUS;
+	}
+	
+	public boolean getServiceIdsFixed()
+	{
+		return true;
+	}
+
+	public boolean getClientIdsFixed()
+	{
+		return true;
+	}
+	
+	public boolean getStartService()
+	{
+		return false;	
+	}
+	
+	public boolean getInstallService()
+	{
+		return false;
+	}
+}
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientDevelopCommand.java b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientDevelopCommand.java
index c39f24e..0e8f40c 100644
--- a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientDevelopCommand.java
+++ b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientDevelopCommand.java
@@ -55,6 +55,7 @@
   private ResourceContext   resourceContext_;
   private boolean						test_;
   private boolean						install_;
+  private boolean						run_;
   private String            wsdlURI_;
   private Object            dataObject_;
 
@@ -90,7 +91,7 @@
     
     webServiceClient_ = wsrt.getWebServiceClient(wsInfo);
     WebServiceScenario scenario = WebServiceScenario.CLIENT_LITERAL;
-    context_ = new SimpleContext(true, true, true, install_, true, true, test_,
+    context_ = new SimpleContext(true, true, true, install_, run_, true, test_,
         false, scenario, resourceContext_.isOverwriteFilesEnabled(),
         resourceContext_.isCreateFoldersEnabled(), resourceContext_
             .isCheckoutFilesEnabled());
@@ -240,6 +241,11 @@
 	test_ = testService;
   }		
   
+  public void setStartService(boolean startService)
+  {
+	  run_ = startService;
+  }
+  
   public void setWsdlURI(String uri)
   {
     wsdlURI_ = uri;
diff --git a/bundles/org.eclipse.jst.ws.creation.ui/plugin.xml b/bundles/org.eclipse.jst.ws.creation.ui/plugin.xml
index 3f7a8e5..fb08480 100644
--- a/bundles/org.eclipse.jst.ws.creation.ui/plugin.xml
+++ b/bundles/org.eclipse.jst.ws.creation.ui/plugin.xml
@@ -285,31 +285,9 @@
               property="ServiceTypeRuntimeServer"
               transform="org.eclipse.jst.ws.internal.common.String2TypeRuntimeServerModifier"/>             
         <map
-              key="StartService"
-              operation="org.eclipse.jst.ws.internal.creation.ui.widgets.ServerWizardWidgetOutputCommand"
-              property="StartService"/>
-        <map
-              key="TestService"
-              operation="org.eclipse.jst.ws.internal.creation.ui.widgets.ServerWizardWidgetOutputCommand"
-              property="TestService"/>
-        <map
-              key="PublishService"
-              operation="org.eclipse.jst.ws.internal.creation.ui.widgets.ServerWizardWidgetOutputCommand"
-              property="PublishService"/>
-        <map
               key="GenerateProxy"
               operation="org.eclipse.jst.ws.internal.creation.ui.widgets.ServerWizardWidgetOutputCommand"
               property="GenerateProxy"/>
-
-        <map
-              key="MonitorService"
-              operation="org.eclipse.jst.ws.internal.consumption.command.common.CreateMonitorCommand"
-              property="MonitorService"/>
-              
-      <map
-              key="MonitorService"
-              operation="org.eclipse.jst.ws.internal.consumption.command.common.ComputeEndpointCommand"
-              property="MonitorService"/>
       <map
               key="Service.RuntimeId"
               operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.extensions.ServerExtensionDefaultingCommand"
@@ -359,41 +337,5 @@
               operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.extensions.ServerExtensionFragment"
               property="ServiceTypeRuntimeServer"
               transform="org.eclipse.jst.ws.internal.common.String2TypeRuntimeServerModifier"/>
-      <map
-              key="TestId"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.test.FinishTestFragment"
-              property="LaunchedServiceTestName"/>
-
-      <map
-              key="TestId"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.test.TestDefaultingFragment"
-              property="LaunchedServiceTestName"/>
-
-      <map
-              key="TestService"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.test.FinishTestFragment"
-              property="TestService"/>
-      <map
-              key="TestId"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.test.FinishTestFragment"
-              property="TestID"/>
-      <map
-              key="PublishToPrivateUDDI"
-              operation="org.eclipse.jst.ws.internal.consumption.ui.widgets.PublishToPrivateUDDICommandFragment"
-              property="PublishToPrivateUDDI"/>
-
-      <map
-              key="PublishToPrivateUDDI"
-              operation="org.eclipse.jst.ws.internal.creation.ui.widgets.test.LaunchFragment"
-              property="PublishToPrivateUDDI"/>
-      <map
-              key="PublishToPublicUDDI"
-              operation="org.eclipse.jst.ws.internal.creation.ui.widgets.test.LaunchFragment"
-              property="PublishToPublicUDDI"/>
-      <map
-              key="LaunchOptions"
-              operation="org.eclipse.wst.ws.internal.explorer.WSExplorerLauncherCommand"
-              property="LaunchOptions"/>                            
-
      </extension>
 </plugin>
diff --git a/bundles/org.eclipse.jst.ws.creation.ui/src/org/eclipse/jst/ws/internal/creation/ui/ant/AntServiceRootCommandFragment.java b/bundles/org.eclipse.jst.ws.creation.ui/src/org/eclipse/jst/ws/internal/creation/ui/ant/AntServiceRootCommandFragment.java
index 8775126..40ad678 100644
--- a/bundles/org.eclipse.jst.ws.creation.ui/src/org/eclipse/jst/ws/internal/creation/ui/ant/AntServiceRootCommandFragment.java
+++ b/bundles/org.eclipse.jst.ws.creation.ui/src/org/eclipse/jst/ws/internal/creation/ui/ant/AntServiceRootCommandFragment.java
@@ -10,31 +10,22 @@
  *******************************************************************************/
 package org.eclipse.jst.ws.internal.creation.ui.ant;
 
-import org.eclipse.jst.ws.internal.common.StringToIProjectTransformer;
-import org.eclipse.jst.ws.internal.consumption.command.common.ComputeEndpointCommand;
-import org.eclipse.jst.ws.internal.consumption.command.common.CreateMonitorCommand;
-import org.eclipse.jst.ws.internal.consumption.command.common.ManageServerStartUpCommand;
 import org.eclipse.jst.ws.internal.consumption.common.ScenarioCleanupCommand;
-import org.eclipse.jst.ws.internal.consumption.ui.command.AntDefaultingFragment;
+import org.eclipse.jst.ws.internal.consumption.ui.command.AntDefaultingOperation;
 import org.eclipse.jst.ws.internal.consumption.ui.command.ListOptionsCommand;
 import org.eclipse.jst.ws.internal.consumption.ui.common.FinishFragment;
 import org.eclipse.jst.ws.internal.consumption.ui.selection.SelectionTransformer;
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.CheckWSDLValidationCommand;
-import org.eclipse.jst.ws.internal.consumption.ui.widgets.PublishToPrivateUDDICommandFragment;
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.extensions.ServerExtensionDefaultingCommand;
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.extensions.ServerExtensionFragment;
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.extensions.ServerExtensionOutputCommand;
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.object.ObjectSelectionFragment;
 import org.eclipse.jst.ws.internal.consumption.ui.widgets.object.ObjectSelectionOutputCommand;
-import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.FinishTestFragment;
-import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.TestDefaultingFragment;
-import org.eclipse.jst.ws.internal.consumption.ui.widgets.test.WSDLTestLaunchCommand;
 import org.eclipse.jst.ws.internal.creation.ui.extension.PreServiceDevelopCommand;
 import org.eclipse.jst.ws.internal.creation.ui.extension.ServiceRootFragment;
 import org.eclipse.jst.ws.internal.creation.ui.widgets.ServerWizardWidgetDefaultingCommand;
 import org.eclipse.jst.ws.internal.creation.ui.widgets.ServerWizardWidgetOutputCommand;
 import org.eclipse.jst.ws.internal.creation.ui.widgets.runtime.ServerRuntimeSelectionWidgetDefaultingCommand;
-import org.eclipse.jst.ws.internal.creation.ui.widgets.test.ServiceTestFragment;
 import org.eclipse.wst.command.internal.env.core.data.DataMappingRegistry;
 import org.eclipse.wst.command.internal.env.core.fragment.SequenceFragment;
 import org.eclipse.wst.command.internal.env.core.fragment.SimpleFragment;
@@ -54,48 +45,25 @@
 public class AntServiceRootCommandFragment extends SequenceFragment
 {
 	
-	private DataMappingRegistry dataMappingRegistry_;
-	private PublishToPrivateUDDICommandFragment publishToPrivateUDDICmdFrag;
-	
   public AntServiceRootCommandFragment()
   { 
-
     add( new SimpleFragment( new ScenarioCleanupCommand(), "" ));
     add( new SimpleFragment(new ListOptionsCommand(), ""));
-    add (new AntDefaultingFragment());
-    add( new SimpleFragment( new ServerWizardWidgetDefaultingCommand(), ""));   
-    
+    add (new SimpleFragment(new AntDefaultingOperation(), ""));    
+    add( new SimpleFragment( new ServerWizardWidgetDefaultingCommand(), ""));
     add( new SimpleFragment( new ServerWizardWidgetOutputCommand(), "" ));    
-    add( new ObjectSelectionFragment() );  
-    
-    add( new SimpleFragment( new CheckWSDLValidationCommand(), ""));   
-    
+    add( new ObjectSelectionFragment() );
+    add( new SimpleFragment( new CheckWSDLValidationCommand(), ""));
     add( new SimpleFragment( new ServerRuntimeSelectionWidgetDefaultingCommand(), ""));
-    add( new SimpleFragment( new ServerExtensionDefaultingCommand(), ""));
-    
-    add( new ServiceRootFragment() );  
-    
+    add( new SimpleFragment( new ServerExtensionDefaultingCommand(), ""));   
+    add( new ServiceRootFragment() );
     add( new SimpleFragment( new ServerExtensionOutputCommand(), "" ));
-    add(new SimpleFragment(new CreateMonitorCommand(), ""));  
-    add(new SimpleFragment(new ComputeEndpointCommand(), ""));
-    add( new ServiceTestFragment( "TestService") );
-    add( new SimpleFragment(new TestDefaultingFragment(),""));
-    add( new SimpleFragment( "Publish") );
-    
-    publishToPrivateUDDICmdFrag = new PublishToPrivateUDDICommandFragment();  
-    add(publishToPrivateUDDICmdFrag);  
-    
-    //TODO jvh - no class def found....  
-    //add(new LaunchFragment());
-    
     add(new FinishFragment());
     add( new SimpleFragment( new ScenarioCleanupCommand(), "" ));
   }
   
   public void registerDataMappings(DataMappingRegistry dataRegistry)
-  {
-	publishToPrivateUDDICmdFrag.registerDataMappings(dataMappingRegistry_);   
-    	
+  { 	
 	dataRegistry.addMapping(ObjectSelectionOutputCommand.class, "ObjectSelection", ServerRuntimeSelectionWidgetDefaultingCommand.class, "InitialSelection", null);
     dataRegistry.addMapping(ObjectSelectionOutputCommand.class, "ObjectSelection", ServerRuntimeSelectionWidgetDefaultingCommand.class, "ClientInitialSelection", null);
     dataRegistry.addMapping(ObjectSelectionOutputCommand.class, "Project", ServerRuntimeSelectionWidgetDefaultingCommand.class, "InitialProject", null);
@@ -106,33 +74,22 @@
 	
     dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "ClientTypeRuntimeServer", ServerWizardWidgetOutputCommand.class);
     dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "ServiceTypeRuntimeServer", ServerWizardWidgetOutputCommand.class);
-    dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "GenerateProxy", ServerWizardWidgetOutputCommand.class);    
-    //TODO: jvh - remove?  install/run - dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "StartService", ServerWizardWidgetOutputCommand.class);
-    dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "TestService", ServerWizardWidgetOutputCommand.class);
-    dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "PublishService", ServerWizardWidgetOutputCommand.class);
+    dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "GenerateProxy", ServerWizardWidgetOutputCommand.class);
     dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "GenerateProxy", ServerWizardWidgetOutputCommand.class);
     dataRegistry.addMapping(ServerWizardWidgetDefaultingCommand.class, "ResourceContext", ServerWizardWidgetOutputCommand.class);
     	
-    dataRegistry.addMapping(AntDefaultingFragment.class, "StartService", ServerWizardWidgetOutputCommand.class);
-    dataRegistry.addMapping(AntDefaultingFragment.class, "InstallService", PreServiceDevelopCommand.class);
-    
     // Map ServerWizardWidgetOutputCommand.
     dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "ServiceTypeRuntimeServer", ObjectSelectionFragment.class, "TypeRuntimeServer", null);
     dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "ClientTypeRuntimeServer", ServerRuntimeSelectionWidgetDefaultingCommand.class);
     dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "ServiceTypeRuntimeServer", ServerRuntimeSelectionWidgetDefaultingCommand.class);
     dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "StartService", ServerExtensionDefaultingCommand.class);
-    dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "TestService", ServerExtensionDefaultingCommand.class);
-    dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "PublishService", ServerExtensionDefaultingCommand.class);
     dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "GenerateProxy", ServerRuntimeSelectionWidgetDefaultingCommand.class);
     
-    //to the test wizard
-    dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "GenerateProxy", ServiceTestFragment.class);
-    dataRegistry.addMapping(ServerExtensionOutputCommand.class, "WsdlURI", WSDLTestLaunchCommand.class);
-    dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "ServerProject", WSDLTestLaunchCommand.class);
-     
     //Map AntDefaultingFragment
-    dataRegistry.addMapping(AntDefaultingFragment.class, "ServiceIdsFixed", ServerRuntimeSelectionWidgetDefaultingCommand.class);
-    dataRegistry.addMapping(AntDefaultingFragment.class, "ClientIdsFixed", ServerRuntimeSelectionWidgetDefaultingCommand.class);
+    dataRegistry.addMapping(AntDefaultingOperation.class, "ServiceIdsFixed", ServerRuntimeSelectionWidgetDefaultingCommand.class);
+    dataRegistry.addMapping(AntDefaultingOperation.class, "ClientIdsFixed", ServerRuntimeSelectionWidgetDefaultingCommand.class);
+    dataRegistry.addMapping(AntDefaultingOperation.class, "StartService", PreServiceDevelopCommand.class);
+    dataRegistry.addMapping(AntDefaultingOperation.class, "InstallService", PreServiceDevelopCommand.class);
     
     // Map ServerRuntimeSelectionWidgetDefaultingCommand
     dataRegistry.addMapping(ServerRuntimeSelectionWidgetDefaultingCommand.class, "ServiceTypeRuntimeServer", ServerExtensionDefaultingCommand.class);    
@@ -146,14 +103,9 @@
     
     // Map ServerExtensionDefaultingCommand
     dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "ServiceTypeRuntimeServer", ServerExtensionFragment.class);
-    dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "TestService", ServiceTestFragment.class);
-    dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "Publish", PublishToPrivateUDDICommandFragment.class);      
-    dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "ServiceTypeRuntimeServer",WSDLTestLaunchCommand.class);
     	  
 	// Setup the PreServiceDevelopCommand.	
     dataRegistry.addMapping( ServerWizardWidgetOutputCommand.class, "StartService", PreServiceDevelopCommand.class);
-    dataRegistry.addMapping( ServerWizardWidgetOutputCommand.class, "TestService", PreServiceDevelopCommand.class);
-    dataRegistry.addMapping( ServerWizardWidgetOutputCommand.class, "PublishService", PreServiceDevelopCommand.class);      
     dataRegistry.addMapping( ServerWizardWidgetOutputCommand.class, "GenerateProxy", PreServiceDevelopCommand.class);      
     dataRegistry.addMapping( ServerWizardWidgetOutputCommand.class, "ResourceContext", PreServiceDevelopCommand.class);			
 	
@@ -167,26 +119,10 @@
     
 	dataRegistry.addMapping( ObjectSelectionOutputCommand.class, "ObjectSelection", PreServiceDevelopCommand.class, "Selection", new SelectionTransformer() );
 	dataRegistry.addMapping( PreServiceDevelopCommand.class, "WebService", ServerExtensionOutputCommand.class );
-    dataRegistry.addMapping(ServerExtensionOutputCommand.class, "ServiceServerInstanceId", CreateMonitorCommand.class);
 
     // Map ServerExtensionOutputCommand for ServerStart()
     dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "ServerProjectEAR", ServerExtensionOutputCommand.class, "EarProjectName", null);
-	  
-    // Map ManageServerStartUpCommand
-    dataRegistry.addMapping(ServerExtensionOutputCommand.class, "IsWebProjectStartupRequested", ManageServerStartUpCommand.class);
     
-    dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "StartService", ManageServerStartUpCommand.class);
-    dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "TestService", ManageServerStartUpCommand.class);
-    dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "ServerProject", ManageServerStartUpCommand.class, "ServiceProject", new StringToIProjectTransformer());
-    dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "ServerServer", ManageServerStartUpCommand.class,"ServiceServerTypeId", null);
-    
-    //jvh - added - strays from widget bindings etc.
-    dataRegistry.addMapping(ServerWizardWidgetOutputCommand.class, "TestService",FinishTestFragment.class);
-    dataRegistry.addMapping(CreateMonitorCommand.class, "MonitoredPort", ComputeEndpointCommand.class);
-    dataRegistry.addMapping(ServerExtensionDefaultingCommand.class, "ServiceTypeRuntimeServer", CreateMonitorCommand.class);
-    dataRegistry.addMapping(ServerExtensionOutputCommand.class, "WsdlURI", ComputeEndpointCommand.class);
-    dataRegistry.addMapping(ServerExtensionOutputCommand.class, "WebServicesParser", ComputeEndpointCommand.class);
-        
   }
 
 }
diff --git a/bundles/org.eclipse.wst.command.env/ant/axisclient.properties b/bundles/org.eclipse.wst.command.env/ant/axisclient.properties
index f539272..c97b1df 100644
--- a/bundles/org.eclipse.wst.command.env/ant/axisclient.properties
+++ b/bundles/org.eclipse.wst.command.env/ant/axisclient.properties
@@ -2,12 +2,34 @@
 scenarioType=client
 
 !--InitialSelection REQUIRED.  Workspace relative URI to the input WSDL or Java.
-InitialSelection=/testProj/WebContent/chat.wsdl
+InitialSelection=/dynamicWebProjectName/WebContent/wsdl/myService.wsdl
 
 !--Utility property values - use these to list values for the following properties:
 !-- Client.RuntimeId, Client.ServerId 
 ListRuntimes=true
 ListServers=true
+ 
+!--type:String - ID of web service runtime 
+Client.RuntimeId=org.eclipse.jst.ws.axis.creation.axisWebServiceRT
+!--type:String - ID of target server 
+Client.ServerId=org.eclipse.jst.server.tomcat.50
+
+!--type:String - name of Client project - this property can be used to give the client project a 
+!-- different name than the project containing the initial selection
+ClientProjectName=clientProjectName
+!--type:String - name of Client EAR project - set only if applicable for selected server type
+ClientEarProjectName=clientEARProjectName
+!--type:String - type of Client project - must be one of: jst.web, jst.java
+!-- only jst.web is valid for Axis
+ClientComponentType=jst.web
+
+!-- CustomizeClientMappings - set to true to supply package-namespace mappings type: boolean
+CustomizeClientMappings=false  
+    
+!-- String: workspace relative URI <jvh - can it be any URI?> to property file containing mappings
+!-- need not be set if CustomizeClientMappings is false  
+!-- file format: file extension must be .properties.  The content of the properties file must be of the format package = namespace .
+Mappings=/testProj/mappings/mappings.txt
 
 !--OverwriteFilesEnabled - set to true to overwrite files that already exist. type:boolean 
 !-- note for non-interactive mode it is recommended that this be set to true
@@ -20,48 +42,3 @@
 !--CheckoutFilesEnabled - set to true to check out files with no warning to the user type:boolean
 !-- note for non-interactive mode it is recommended that this be set to true
 CheckoutFilesEnabled=true
-
-!-- ClientTypeRuntimeServer - m:1 property to bean mapping 
-!--type:String - ID of web service runtime - must be compatible with server & one of: <check with Rupam> 
-Client.RuntimeId=org.eclipse.jst.ws.axis.creation.axisWebServiceRT
-!-- Client.ServerId - ID of server 
-!--type:String -  Must be compatible with runtime & one of:
-!-- org.eclipse.jst.server.generic.weblogic81
-!-- org.eclipse.jst.server.generic.weblogic90
-!-- org.eclipse.jst.server.generic.jboss323
-!-- org.eclipse.jst.server.generic.jonas4
-!-- org.eclipse.jst.server.generic.oracle1013dp4
-!-- org.eclipse.jst.server.tomcat.32
-!-- org.eclipse.jst.server.tomcat.40
-!-- org.eclipse.jst.server.tomcat.41
-!-- org.eclipse.jst.server.tomcat.50
-!-- org.eclipse.jst.server.tomcat.55
-!-- org.eclipse.jst.servers.websphere.6 
-Client.ServerId=org.eclipse.jst.server.tomcat.50
-
-!--type:String - name of Client project - this property would be used to give the client project a different name than the project containing the initial selection
-ClientProjectName=clientProjectName
-!--type:String - name of Client EAR project - set only if applicable for selected server type
-ClientEarProjectName=clientEARProjectName
-!--type:String - type of Client project - must be one of: jst.web, jst.java
-!-- only jst.web is valid for Axis
-ClientComponentType=jst.web
-
-!--TestService - set to true to launch browser and test service with the web services explorer type:boolean
-TestService=false
-!-- TestId. Name of a valid test facility - for Axis - one of: Web service sample JSPs, Web Services Explorer 
-!-- only needs to be set if TestService is true --
-TestId= Web Services Explorer
-
-!-- not intended for use at the command line at the command line since it is a UI feature...
-!-- MonitorService - set to true to monitor SOAP traffic for the web service - type:boolean
-MonitorService=false 
-
-!--  AXIS CLIENT SPECIFIC SETTINGS
-!-- CustomizeClientMappings - set to true to supply package-namespace mappings type: boolean
-CustomizeClientMappings=false  
-    
-!-- String: workspace relative URI <jvh - can it be any URI?> to property file containing mappings
-!-- need not be set if CustomizeClientMappings is false  
-!-- file format: file extension must be .properties.  The content of the properties file must be of the format package = namespace .
-Mappings=/testProj/mappings/mappings.txt
diff --git a/bundles/org.eclipse.wst.command.env/ant/axisservice.properties b/bundles/org.eclipse.wst.command.env/ant/axisservice.properties
index f24d5b7..a3c9645 100644
--- a/bundles/org.eclipse.wst.command.env/ant/axisservice.properties
+++ b/bundles/org.eclipse.wst.command.env/ant/axisservice.properties
@@ -2,13 +2,41 @@
 scenarioType=service
 
 !-- REQUIRED.  Workspace relative URI to the input WSDL or Java
-InitialSelection=/projectName/WebContent/StockQuote.wsdl
+InitialSelection=/dynamicWebProjectName/WebContent/myService.wsdl
 
-!--Utility property values - use these to list values for the following properties:
+!--Utility property values - use these to list valid values for the following properties:
 !-- Service.RuntimeId, Service.ServerId 
 ListRuntimes=true
 ListServers=true
 
+!--  type:String  - ID of web service runtime 
+Service.RuntimeId=org.eclipse.jst.ws.axis.creation.axisWebServiceRT
+!--type:String -  ID of target server 
+Service.ServerId=org.eclipse.jst.server.tomcat.50
+
+!--ServiceProjectName - !--type:String - name of Service project - this property can be used to give the service project a different name than the project containing the initial selection.  type: String    
+ServiceProjectName=serviceProjectName
+!--ServiceProjectName - !--type:String - name of Service project - this property can be used to give the service project a different name than the project containing the initial selection.  type: String
+ServiceEarProjectName=serviceEarProjectName
+
+!-- AXIS SERVICE ----
+!-- All scenarios. String: workspace relative URI to property file containing mappings
+!-- Top Down - Mappings that are used to override the default package names of the generated Java template classes.  
+!-- file format: file extension must be .properties.  For bottom up, the content of the properties file must be of the format package = namespace .
+!-- For top down, the content of the properties file must be of the format namespace=package
+!--<TODO> need to confirm format and escape characters required.
+Mappings=/testProj/mappings/mappings.txt
+
+!-- Top down - String: the workspace relative URI for a Java source folder for the generated Java code - must be existing workspace source folder
+JavaOutput=/projectName/JavaSource
+
+!-- Bottom up - comma delimited string of method names to be exposed in output WSDL.  If no list is provided, all methods are exposed.
+Methods=
+!-- Bottom up - String: one of: RPC, DOCUMENT, WRAPPED
+Style=DOCUMENT
+!-- Bottom up - String: one of: LITERAL, ENCODED 
+Use=LITERAL																												 
+
 !--OverwriteFilesEnabled - set to true to overwrite files that already exist. type:boolean 
 !-- note for non-interactive mode it is recommended that this be set to true
 OverwriteFilesEnabled=true
@@ -20,67 +48,3 @@
 !--CheckoutFilesEnabled - set to true to check out files with no warning to the user type:boolean
 !-- note for non-interactive mode it is recommended that this be set to true
 CheckoutFilesEnabled=true
-
-!--- Server.RuntimeId ID of web service runtime - must be compatible with server & one of: 
-!--  type:String  
-Service.RuntimeId=org.eclipse.jst.ws.axis.creation.axisWebServiceRT
-!--Server.ServerId - ID of server 
-!--type:String -  Must be compatible with runtime & one of:
-!-- org.eclipse.jst.server.generic.weblogic81
-!-- org.eclipse.jst.server.generic.weblogic90
-!-- org.eclipse.jst.server.generic.jboss323
-!-- org.eclipse.jst.server.generic.jonas4
-!-- org.eclipse.jst.server.generic.oracle1013dp4
-!-- org.eclipse.jst.server.tomcat.32
-!-- org.eclipse.jst.server.tomcat.40
-!-- org.eclipse.jst.server.tomcat.41
-!-- org.eclipse.jst.server.tomcat.50
-!-- org.eclipse.jst.server.tomcat.55
-!-- org.eclipse.jst.servers.websphere.6 
-Service.ServerId=org.eclipse.jst.server.tomcat.50
-
-!-- StartService. Set to true if the service should be started after generation.  type: boolean
-StartService=true
-!-- PublishService. Set to true to launch Web Service Explorer and publish service to UDDI registry.  type: boolean
-PublishService=false
-
-!--ServiceProjectName - !--type:String - name of Service project - this property would be used to give the service project a different name than the project containing the initial selection.  type: String    
-ServiceProjectName=serviceProjectName
-!--ServiceProjectName - !--type:String - name of Service project - this property would be used to give the service project a different name than the project containing the initial selection.  type: String
-ServiceEarProjectName=serviceEarProjectName
-
-!--TestService - set to true to indicate test with the web services explorer type:boolean
-TestService=false  
-!-- TestId. Name of a valid test facility - for Axis - one of: Web service sample JSPs, Web Services Explorer 
-!-- only needs to be set if TestService is true --
-TestId= Web Services Explorer
-
-!-- MonitorService - set to true to monitor SOAP traffic for the web service - type:boolean
-MonitorService=false
-
-!--PublishToPrivateUDDI. Set to true if service should be published to a private UDDI registry.  type: boolean
-PublishToPrivateUDDI=false
-!--PublishToPublicUDDI. Set to true if service should be published to a public UDDI registry. type: boolean
-PublishToPublicUDDI=false
-!--  LaunchOptions - Set if PublishToPublicUDDI is set to true. type:String
-!--<jvh> will need to add a transformer from this to LaunchOptions...also what are valid values? Chris?
-LaunchOptions=
-
-!-- AXIS SERVICE ----
-!-- All scenarios. String: workspace relative URI <jvh - can it be any URI?> to property file containing mappings
-!-- Top Down - Mappings that are used to override the default package names of the generated Java template classes.  
-!-- file format: file extension must be .properties.  For bottom up, the content of the properties file must be of the format package = namespace .
-!-- For top down, the content of the properties file must be of the format namespace=package
-!--<jvh> need to confirm: note from WS cmd line tool help - Note: When using this argument, all namespace references must have the colon ':' 
-!--    escaped using a backslash as follows: http\://my.namespace.WSDL2WebService ignores any namespace references that do not contain an escaped colon.
-Mappings=/testProj/mappings/mappings.txt
-
-!-- Top down - String: the workspace relative URI for a Java source folder for the generated Java code - must be existing workspace source folder
-JavaOutput=/projectName/JavaSource
-
-!-- Bottom up - comma delimited string of method names to be exposed in output WSDL.  If no list is provided, all methods are exposed.
-Methods=
-!-- Bottom up - String: one of: RPC, DOCUMENT, WRAPPED
-Style=DOCUMENT
-!-- Bottom up - String: one of: LITERAL, ENCODED 
-Use=LITERAL