[JBoss JIRA] (WFLY-13018) Multiple CallbackHandlerServices for the same mechanism (PLAIN)
by Mark Sanchez (Jira)
[ https://issues.redhat.com/browse/WFLY-13018?page=com.atlassian.jira.plugi... ]
Mark Sanchez closed WFLY-13018.
-------------------------------
Resolution: Done
> Multiple CallbackHandlerServices for the same mechanism (PLAIN)
> ---------------------------------------------------------------
>
> Key: WFLY-13018
> URL: https://issues.redhat.com/browse/WFLY-13018
> Project: WildFly
> Issue Type: Bug
> Components: Build System
> Affects Versions: 18.0.1.Final
> Reporter: Mark Sanchez
> Assignee: Brian Stansberry
> Priority: Major
> Fix For: 17.0.1.Final
>
>
> Error:
> WFLYDM0042: Multiple CallbackHandlerServices for the same mechanism (PLAIN)
> We get an error with the following ldap configuration. This works for version 17.
>
> <security-realm name="ldap_security_realm">
> <server-identities>
> <ssl>
> <engine enabled-protocols="TLSv1.2"/>
> <keystore path="/opt/app/workload/jboss/ssl_jboss/psftest2s.jboss.keystore" keystore-password="${VAULT::ssl_cert::password::1}"/>
> </ssl>
> </server-identities>
> <authentication>
> <ldap connection="testLdap" base-dn="dc=test,dc=sbc,dc=com" recursive="true">
> <username-filter attribute="samaccountname"/>
> </ldap>
> </authentication>
> </security-realm>
> </security-realms>
> <outbound-connections>
> <ldap name="testLdap" url="ldap://its-ad-ldap.it.test.com:636" search-dn="CN=mxxxxxx,OU=GenericID,OU=testUsers,DC=testServices,DC=test,DC=com" search-credential="${VAULT::ldap_searchdn::password::1}" security-realm="ldap_security_realm"/>
> </outbound-connections>
> <management-interfaces>
> <http-interface security-realm="ldap_security_realm">
> <http-upgrade enabled="true"/>
> <socket interface="management" port="${jboss.management.http.port:9990}"/>
> </http-interface>
> </management-interfaces>
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months
[JBoss JIRA] (WFLY-13018) Multiple CallbackHandlerServices for the same mechanism (PLAIN)
by Mark Sanchez (Jira)
Mark Sanchez created WFLY-13018:
-----------------------------------
Summary: Multiple CallbackHandlerServices for the same mechanism (PLAIN)
Key: WFLY-13018
URL: https://issues.redhat.com/browse/WFLY-13018
Project: WildFly
Issue Type: Bug
Components: Build System
Affects Versions: 18.0.1.Final
Reporter: Mark Sanchez
Assignee: Brian Stansberry
Fix For: 17.0.1.Final
Error:
WFLYDM0042: Multiple CallbackHandlerServices for the same mechanism (PLAIN)
We get an error with the following ldap configuration. This works for version 17.
<security-realm name="ldap_security_realm">
<server-identities>
<ssl>
<engine enabled-protocols="TLSv1.2"/>
<keystore path="/opt/app/workload/jboss/ssl_jboss/psftest2s.jboss.keystore" keystore-password="${VAULT::ssl_cert::password::1}"/>
</ssl>
</server-identities>
<authentication>
<ldap connection="testLdap" base-dn="dc=test,dc=sbc,dc=com" recursive="true">
<username-filter attribute="samaccountname"/>
</ldap>
</authentication>
</security-realm>
</security-realms>
<outbound-connections>
<ldap name="testLdap" url="ldap://its-ad-ldap.it.test.com:636" search-dn="CN=mxxxxxx,OU=GenericID,OU=testUsers,DC=testServices,DC=test,DC=com" search-credential="${VAULT::ldap_searchdn::password::1}" security-realm="ldap_security_realm"/>
</outbound-connections>
<management-interfaces>
<http-interface security-realm="ldap_security_realm">
<http-upgrade enabled="true"/>
<socket interface="management" port="${jboss.management.http.port:9990}"/>
</http-interface>
</management-interfaces>
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months
[JBoss JIRA] (DROOLS-4985) A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
by Toni Rikkola (Jira)
[ https://issues.redhat.com/browse/DROOLS-4985?page=com.atlassian.jira.plug... ]
Toni Rikkola updated DROOLS-4985:
---------------------------------
Sprint: 2020 Week 04-06 (from Jan 20)
> A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
> ---------------------------------------------------------------------------------------------------------------------------------
>
> Key: DROOLS-4985
> URL: https://issues.redhat.com/browse/DROOLS-4985
> Project: Drools
> Issue Type: Bug
> Components: Guided Decision Table Editor, XLS Score Card Editor
> Reporter: Oscar Molina
> Assignee: Toni Rikkola
> Priority: Major
> Labels: drools-tools, support
>
> The attached "test_functions.xlsx" spreadsheet which is being used for creating a “Spreadsheet decision tables” asset. This spreadsheet contains a “Function” and has some rules. These rules use the “Function” in the constraints. When this XLSX Decision Table is converted to a “Guided Decision Table”, the constraints are missing the “Function” calls. Surprisingly if the “Function” call is used in a System.out.println statement, the generated DRL correctly contains it.
> A wrongly generated DRL rule
> {code}
> rule "Row 3 Hello RuleTable"
> dialect "mvel"
> when
> $person : Person( gender == "Female" , married == true )
> then
> $person.setHelloMsg( "Miss" );
> System.out.println(hello($person.getName(), "Miss", "how are you doing"));
> end
> {code}
> Expected correct DRL rule
> {code}
> rule "Row 3 Hello RuleTable DRL"
> dialect "mvel"
> when
> $person : Person( gender == "Female" , married == true )
> then
> $person.setHelloMsg( hello($person.getName(), "Miss", "how are you doing") );
> System.out.println(hello($person.getName(), "Miss", "how are you doing"));
> end
> {code}
> Regards,
> Oscar.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months
[JBoss JIRA] (DROOLS-4985) A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
by Toni Rikkola (Jira)
[ https://issues.redhat.com/browse/DROOLS-4985?page=com.atlassian.jira.plug... ]
Toni Rikkola moved RHDM-1211 to DROOLS-4985:
--------------------------------------------
Project: Drools (was: Red Hat Decision Manager)
Key: DROOLS-4985 (was: RHDM-1211)
Workflow: GIT Pull Request workflow (was: CDW with docs v1)
Docs QE Status: NEW
Component/s: Guided Decision Table Editor
XLS Score Card Editor
(was: Decision Central)
Affects Version/s: (was: 7.5.0.GA)
(was: 7.5.1.GA)
QE Status: NEW
> A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
> ---------------------------------------------------------------------------------------------------------------------------------
>
> Key: DROOLS-4985
> URL: https://issues.redhat.com/browse/DROOLS-4985
> Project: Drools
> Issue Type: Bug
> Components: Guided Decision Table Editor, XLS Score Card Editor
> Reporter: Oscar Molina
> Assignee: Toni Rikkola
> Priority: Major
> Labels: drools-tools, support
>
> The attached "test_functions.xlsx" spreadsheet which is being used for creating a “Spreadsheet decision tables” asset. This spreadsheet contains a “Function” and has some rules. These rules use the “Function” in the constraints. When this XLSX Decision Table is converted to a “Guided Decision Table”, the constraints are missing the “Function” calls. Surprisingly if the “Function” call is used in a System.out.println statement, the generated DRL correctly contains it.
> A wrongly generated DRL rule
> {code}
> rule "Row 3 Hello RuleTable"
> dialect "mvel"
> when
> $person : Person( gender == "Female" , married == true )
> then
> $person.setHelloMsg( "Miss" );
> System.out.println(hello($person.getName(), "Miss", "how are you doing"));
> end
> {code}
> Expected correct DRL rule
> {code}
> rule "Row 3 Hello RuleTable DRL"
> dialect "mvel"
> when
> $person : Person( gender == "Female" , married == true )
> then
> $person.setHelloMsg( hello($person.getName(), "Miss", "how are you doing") );
> System.out.println(hello($person.getName(), "Miss", "how are you doing"));
> end
> {code}
> Regards,
> Oscar.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months