| Summary: | Cannot change the Web Service Runtime in Web Service wizard | ||
|---|---|---|---|
| Product: | [WebTools] WTP Webservices | Reporter: | Tilak Sharma <tilak1233> |
| Component: | jst.ws | Assignee: | jst.ws <jst.ws-inbox> |
| Status: | NEW --- | QA Contact: | Keith Chong <keith.chong.ca> |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Build Identifier: I20100608-0911 Ok button in the RuntimeServerSelectionDialog gets disabled when we change the Web Service Runtime. I debugged the code and the issue is in the method org.eclipse.jst.ws.internal.consumption.ui.wizard.RuntimeServerSelectionDialog.validateServerRuntimeSelection():381. Here the Ok button is being disabled for INFO status as well: if (status.getSeverity() == Status.INFO) { setMessage(message, IMessageProvider.INFORMATION); getButton(IDialogConstants.OK_ID).setEnabled(false); } Instead it should be : getButton(IDialogConstants.OK_ID).setEnabled(true); Reproducible: Always Steps to Reproduce: 1. Create a WSDL inside a project 2. Now select the "Generate Java Bean Skeleton" option under Web Services group or launch the Web Service wizard. 3. Observe that "Top Down Java Bean Web Service" is selected as the Web Service Type 4. Now select the "Web Service Runtime" hyperlink 5. A dialog with title "Service Deployment Configuration" pops up, where you can change the Web Service runtime among the provided options. 6. Upon selecting/changing the Web Service runtime, the Ok Button gets disabled.