This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 211962
Collapse All | Expand All

(-)a/glassfish.common/src/org/netbeans/modules/glassfish/common/wizards/AddServerLocationPanel.java (-2 / +8 lines)
Lines 61-66 Link Here
61
import javax.swing.event.ChangeEvent;
61
import javax.swing.event.ChangeEvent;
62
import javax.swing.event.ChangeListener;
62
import javax.swing.event.ChangeListener;
63
import org.netbeans.modules.glassfish.common.GlassfishInstance;
63
import org.netbeans.modules.glassfish.common.GlassfishInstance;
64
import org.netbeans.modules.glassfish.common.ServerDetails;
64
import org.netbeans.modules.glassfish.spi.TreeParser;
65
import org.netbeans.modules.glassfish.spi.TreeParser;
65
import org.netbeans.modules.glassfish.spi.Utils;
66
import org.netbeans.modules.glassfish.spi.Utils;
66
import org.openide.filesystems.FileUtil;
67
import org.openide.filesystems.FileUtil;
Lines 228-236 Link Here
228
                                wizard.putProperty(PROP_ERROR_MESSAGE, statusText);
229
                                wizard.putProperty(PROP_ERROR_MESSAGE, statusText);
229
                                return false;
230
                                return false;
230
                            } else {
231
                            } else {
231
                                wizard.putProperty(PROP_ERROR_MESSAGE, null);
232
                                if (candidate == ServerDetails.GLASSFISH_SERVER_3_1_2) {
232
                                wizard.putProperty(PROP_INFO_MESSAGE, NbBundle.getMessage(
233
                                    wizard.putProperty(PROP_ERROR_MESSAGE, NbBundle.getMessage(
234
                                        AddServerLocationPanel.class, "ERR_BrokenGF3_1_2", candidate)); // NOI18N
235
                                } else {
236
                                    wizard.putProperty(PROP_ERROR_MESSAGE, null);
237
                                    wizard.putProperty(PROP_INFO_MESSAGE, NbBundle.getMessage(
233
                                        AddServerLocationPanel.class, "MSG_NextForSpecial", candidate)); // NOI18N
238
                                        AddServerLocationPanel.class, "MSG_NextForSpecial", candidate)); // NOI18N
239
                                }
234
                            }
240
                            }
235
                        }
241
                        }
236
                    }
242
                    }
(-)a/glassfish.common/src/org/netbeans/modules/glassfish/common/wizards/Bundle.properties (+1 lines)
Lines 158-163 Link Here
158
ERR_InvalidAdminPort=Invalid port value: {0}
158
ERR_InvalidAdminPort=Invalid port value: {0}
159
MSG_RegisterRemote=Register remote instance: {0}:{1}
159
MSG_RegisterRemote=Register remote instance: {0}:{1}
160
160
161
ERR_BrokenGF3_1_2=<html>{0} is known to have serious bug in JAX-WS.<br>This bug may cause NetBeans to stop responding.<br>Click Next if you really want to register remote or custom local domains with broken server.</html>
161
MSG_NextForSpecial=Detected a {0} install. Click Next to register remote or custom local domains.
162
MSG_NextForSpecial=Detected a {0} install. Click Next to register remote or custom local domains.
162
ERR_InvalidDomainData=The domain ({0}) has invalid data in domain.xml
163
ERR_InvalidDomainData=The domain ({0}) has invalid data in domain.xml
163
164

Return to bug 211962