diff options
author | Jose <jose@zeroc.com> | 2013-01-25 16:51:15 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2013-01-25 16:51:15 +0100 |
commit | 53bb409ebbd239f10a8f996ee5e751f2d0716f2d (patch) | |
tree | 27512e60f928afd8f6f55aced54c7520969657ed /java/src/IceGridGUI/SessionKeeper.java | |
parent | CHANGES update (diff) | |
download | ice-53bb409ebbd239f10a8f996ee5e751f2d0716f2d.tar.bz2 ice-53bb409ebbd239f10a8f996ee5e751f2d0716f2d.tar.xz ice-53bb409ebbd239f10a8f996ee5e751f2d0716f2d.zip |
IceGridGUI minor fix
Diffstat (limited to 'java/src/IceGridGUI/SessionKeeper.java')
-rw-r--r-- | java/src/IceGridGUI/SessionKeeper.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/src/IceGridGUI/SessionKeeper.java b/java/src/IceGridGUI/SessionKeeper.java index 2f1f3012fc0..f1b8a02cc74 100644 --- a/java/src/IceGridGUI/SessionKeeper.java +++ b/java/src/IceGridGUI/SessionKeeper.java @@ -1904,6 +1904,7 @@ public class SessionKeeper endpoint.append(_coordinator.getWizardCommunicator().identityToString(id)); endpoint.append(":"); endpoint.append(_directCustomEndpointValue.getText()); + _coordinator.getWizardCommunicator().stringToProxy(endpoint.toString()); if(containsSecureEndpoints(endpoint.toString())) { _cardLayout.show(_cardPanel, WizardStep.X509CertificateStep.toString()); @@ -1959,6 +1960,7 @@ public class SessionKeeper endpoint.append(_coordinator.getWizardCommunicator().identityToString(id)); endpoint.append(":"); endpoint.append(_routedCustomEndpointValue.getText()); + _coordinator.getWizardCommunicator().stringToProxy(endpoint.toString()); if(containsSecureEndpoints(endpoint.toString())) { _cardLayout.show(_cardPanel, WizardStep.X509CertificateStep.toString()); @@ -2910,6 +2912,9 @@ public class SessionKeeper catch(Ice.EndpointParseException ex) { } + catch(Ice.ProxyParseException ex) + { + } return false; } |