### Eclipse Workspace Patch 1.0 #P org.jboss.tools.ws.creation.ui Index: src/org/jboss/tools/ws/creation/ui/widgets/WSDL2JavaCodeGenConfigWidget.java =================================================================== --- src/org/jboss/tools/ws/creation/ui/widgets/WSDL2JavaCodeGenConfigWidget.java (revision 22436) +++ src/org/jboss/tools/ws/creation/ui/widgets/WSDL2JavaCodeGenConfigWidget.java (working copy) @@ -215,7 +215,7 @@ }); } - // enable enable soap12 checkbox if the target jbossws runtime is less + // enable soap12 checkbox if the target jbossws runtime is less // than 3.0 updateExtensionButtonStatus(); @@ -223,8 +223,9 @@ } private void updateExtensionButtonStatus() { - btnExtension.setEnabled(JBossWSCreationUtils.supportSOAP12(model - .getWebProjectName())); + boolean a = JBossWSCreationUtils.supportSOAP12(model.getWebProjectName()); + btnExtension.setEnabled(a); + btnExtension.setSelection(a); } private void loadBindingFiles(List bindingList) { #P org.jboss.tools.ws.creation.core Index: src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCore.properties =================================================================== --- src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCore.properties (revision 22436) +++ src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCore.properties (working copy) @@ -21,7 +21,7 @@ Label_Binding_File=Binding files Label_JaxWS_Target=JAX-WS specification Label_Update_Webxml=Update the default Web.xml -Label_EnableSOAP12_Binding_Extension=Enable SOAP 1.2 binding extension (This option is only available for JBossWS 3.0 or later) +Label_EnableSOAP12_Binding_Extension=Enable binding extension support (Only available for JBossWS 3.0 or later) Label_Button_Text_Remove=Remove Progress_Message_Generating=Generating Web Service resources... Client_Sample_Run_Over= Call Over!