You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@syncope.apache.org by "Nicola Baiocco (JIRA)" <ji...@apache.org> on 2014/10/16 14:51:33 UTC

[jira] [Commented] (SYNCOPE-568) Connectors configuration "check connection"

    [ https://issues.apache.org/jira/browse/SYNCOPE-568?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14173701#comment-14173701 ] 

Nicola Baiocco commented on SYNCOPE-568:
----------------------------------------

I temporarly fixed this issue with an overlay of ConnectorModalPage.java with this modification:

        final AjaxButton check = new IndicatingAjaxButton("check", new ResourceModel("check")) {

            private static final long serialVersionUID = -7978723352517770644L;

            @Override
            public void onSubmit(final AjaxRequestTarget target, final Form<?> form) {
                final ConnInstanceTO conn = (ConnInstanceTO) form.getModelObject();

                if (restClient.check(conn)) {
                    info(getString("success_connection"));
                } else {
                    error(getString("error_connection"));
                }

                feedbackPanel.refresh(target);
            }
        };

> Connectors configuration "check connection" 
> --------------------------------------------
>
>                 Key: SYNCOPE-568
>                 URL: https://issues.apache.org/jira/browse/SYNCOPE-568
>             Project: Syncope
>          Issue Type: Bug
>          Components: console
>    Affects Versions: 1.2.0
>            Reporter: Nicola Baiocco
>            Priority: Minor
>             Fix For: 1.2.1
>
>
> Functionality "check connection" in connector configuration works properly only after saved connector configuration.
> Seems that  "check connection" doesn't use the updated configuration but the previous one saved. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)