[teiid-issues] [JBoss JIRA] (TEIID-3997) "Unknown attribute ssl-enable" error in DV Management Console when configuring a transport for SSL

Debbie Steigner (JIRA) issues at jboss.org
Wed Feb 24 11:11:00 EST 2016


Debbie Steigner created TEIID-3997:
--------------------------------------

             Summary:  "Unknown attribute ssl-enable" error in DV Management Console when configuring a transport for SSL
                 Key: TEIID-3997
                 URL: https://issues.jboss.org/browse/TEIID-3997
             Project: Teiid
          Issue Type: Bug
    Affects Versions: 8.7.2.6_2
            Reporter: Debbie Steigner
            Assignee: Steven Hawkins


clicking the SSL Enabled checkbox on a Teiid Transport in the Management Console gives below error upon saving:

Unexpected HTTP response: 500

Request
{
    "operation" => "composite",
    "address" => [],
    "steps" => [{
        "address" => [
            ("profile" => "ha"),
            ("subsystem" => "teiid"),
            ("transport" => "jdbc")
        ],
        "operation" => "write-attribute",
        "name" => "ssl-enable",
        "value" => true
    }]
}

Response

Internal Server Error
{
    "outcome" => "failed",
    "result" => {"step-1" => {
        "outcome" => "failed",
        "failure-description" => "JBAS014792: Unknown attribute ssl-enable",
        "rolled-back" => true
    }},
    "failure-description" => {"domain-failure-description" => {"JBAS014653: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-1" => "JBAS014792: Unknown attribute ssl-enable"}}},
    "rolled-back" => true
}

The correct attribute is ssl-mode=enabled, which is what setting the Mode Field to enabled does.  Either remove the checkbox for "SSL Enabled" or have it send the correct operation:
Request
{
    "operation" => "composite",
    "address" => [],
    "steps" => [{
        "address" => [
            ("profile" => "ha"),
            ("subsystem" => "teiid"),
            ("transport" => "jdbc")
        ],
        "operation" => "write-attribute",
        "name" => "ssl-mode",
        "value" => enabled
    }]
}





--
This message was sent by Atlassian JIRA
(v6.4.11#64026)


More information about the teiid-issues mailing list