[JBoss JIRA] (WFLY-9096) JMS client fails to connect with SSL on IBM JDK 8
by Jan Kalina (JIRA)
[ https://issues.jboss.org/browse/WFLY-9096?page=com.atlassian.jira.plugin.... ]
Jan Kalina commented on WFLY-9096:
----------------------------------
Artemis is upgraded in CD14 - no backport needed anymore.
> JMS client fails to connect with SSL on IBM JDK 8
> -------------------------------------------------
>
> Key: WFLY-9096
> URL: https://issues.jboss.org/browse/WFLY-9096
> Project: WildFly
> Issue Type: Bug
> Components: JMS, Security
> Affects Versions: 11.0.0.Alpha1
> Environment: IBM JDK 8:
> {code}
> $ java -version
> java version "1.8.0"
> Java(TM) SE Runtime Environment (build pxi3280sr4fp2-20170322_01(SR4 FP2))
> IBM J9 VM (build 2.8, JRE 1.8.0 Linux x86-32 20170314_340265 (JIT enabled, AOT enabled)
> J9VM - R28_20170314_2309_B340265
> JIT - tr.r14.java.green_20170314_134138
> GC - R28_20170314_2309_B340265
> J9CL - 20170314_340265)
> JCL - 20170318_01 based on Oracle jdk8u121-b13
> {code}
> Reporter: Jan Kalina
> Assignee: Jan Kalina
> Priority: Critical
> Labels: eap7.1-risks-mitigation
>
> If server is configured to authenticate JMS client with SSL configured using Elytron SSLContext then if client is using IBM JDK 8, authentication fails with:
> {code}
> ERROR: AMQ214016: Failed to create netty connection
> java.nio.channels.ClosedChannelException
> at io.netty.handler.ssl.SslHandler.channelInactive(...)(Unknown Source)
> Producer got exception and ended:javax.jms.JMSException: Failed to create session factory
> javax.jms.JMSException: Failed to create session factory
> at org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory.createConnectionInternal(ActiveMQConnectionFactory.java:757)
> at org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory.createConnection(ActiveMQConnectionFactory.java:265)
> at org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory.createConnection(ActiveMQConnectionFactory.java:260)
> at ProducerTransSession.run(ProducerTransSession.java:75)
> Caused by: ActiveMQNotConnectedException[errorType=NOT_CONNECTED message=AMQ119007: Cannot connect to server(s). Tried with all available servers.]
> at org.apache.activemq.artemis.core.client.impl.ServerLocatorImpl.createSessionFactory(ServerLocatorImpl.java:787)
> at org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory.createConnectionInternal(ActiveMQConnectionFactory.java:755)
> ... 3 more
> {code}
> If client uses Oracle JDK 8 or SSL authentication is configured on http listener using PicketBox then client connects successfully.
> Issue is under investigation.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months
[JBoss JIRA] (JGRP-2286) VERIFY_SUSPECT can return false positives if member is killed and immediately restarted
by Bela Ban (JIRA)
[ https://issues.jboss.org/browse/JGRP-2286?page=com.atlassian.jira.plugin.... ]
Bela Ban commented on JGRP-2286:
--------------------------------
If this problem still persists, please come up with a unit test, so I can fix it. The ARE_YOU_DEAD message is sent out only once, so I don't see how this can be an issue...
> VERIFY_SUSPECT can return false positives if member is killed and immediately restarted
> ---------------------------------------------------------------------------------------
>
> Key: JGRP-2286
> URL: https://issues.jboss.org/browse/JGRP-2286
> Project: JGroups
> Issue Type: Bug
> Affects Versions: 4.0.13
> Reporter: Paul Ferraro
> Assignee: Paul Ferraro
> Fix For: 4.0.14
>
>
> When a member is killed, it is suspected and VERIFY_SUSPECT attempts to send a message to the member to verify that it has left. If, however, the member is restarted before the VERIFY_SUSPECT sends its message, the newly started member (with same physical address, but different UUID) can receive it and erroneously reply with an I_AM_NOT_DEAD response. This results in a zombie member in the view that will remain until the reincarnated member leaves.
> To fix this, we should add the address of the suspected member to the VerifyHeader and validate that the member is us before sending an I_AM_NOT_DEAD response.
> Additionally, we can respond with a new MBR_IS_DEAD response on behalf of the suspected member, in the case that the message was receive by the reincarnated member to expedite the removal of the suspected member from the view.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months
[JBoss JIRA] (WFCORE-4076) EJB using legacy security order of SASL mechanism matters
by Martin Choma (JIRA)
[ https://issues.jboss.org/browse/WFCORE-4076?page=com.atlassian.jira.plugi... ]
Martin Choma commented on WFCORE-4076:
--------------------------------------
As far as this can be seen in eap 6.4 I am ok with closing this issue.
[~dehort] does it seems reasonable to you?
> EJB using legacy security order of SASL mechanism matters
> ---------------------------------------------------------
>
> Key: WFCORE-4076
> URL: https://issues.jboss.org/browse/WFCORE-4076
> Project: WildFly Core
> Issue Type: Bug
> Components: Remoting, Security
> Affects Versions: 6.0.0.Final
> Reporter: Martin Choma
> Assignee: Jiri Ondrusek
> Attachments: SimpleEAR_EJB3.tar.gz, jbeap-15260-reproducer-config.tar.gz
>
>
> Having configuration like this EJB call following reproducer works
> {code}
> <subsystem xmlns="urn:jboss:domain:remoting:4.0">
> <endpoint/>
> <http-connector name="http-remoting-connector" connector-ref="default" security-realm="ApplicationRealm">
> <properties>
> <property name="SASL_MECHANISMS" value="PLAIN,ANONYMOUS"/>
> <property name="SASL_POLICY_NOANONYMOUS" value="false"/>
> </properties>
> </http-connector>
> </subsystem>
> {code}
> Switching mechanisms to <property name="SASL_MECHANISMS" value="ANONYMOUS,PLAIN"/> causes error
> {code}
> 17:52:50,441 ERROR [org.jboss.as.ejb3.invocation] (default task-1) WFLYEJB0034: EJB Invocation failed on component GoodBye for method public abstract java.lang.String jboss.example.ejb.GoodBye.sayGoodBye(): javax.ejb.EJBAccessException: WFLYSEC0027: Invalid User
> at org.jboss.as.ejb3.security.SecurityContextInterceptor$1.run(SecurityContextInterceptor.java:69)
> at org.jboss.as.ejb3.security.SecurityContextInterceptor$1.run(SecurityContextInterceptor.java:49)
> at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:97)
> at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
> at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.java:22)
> at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
> at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFactory.java:64)
> at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
> at org.jboss.as.ejb3.deployment.processors.EjbSuspendInterceptor.processInvocation(EjbSuspendInterceptor.java:57)
> at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
> at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67)
> at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
> at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)
> at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
> at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60)
> at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
> at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438)
> at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619)
> at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57)
> at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
> at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53)
> at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198)
> at org.wildfly.security.auth.server.SecurityIdentity.runAsFunctionEx(SecurityIdentity.java:382)
> at org.jboss.as.ejb3.remote.AssociationImpl.invokeWithIdentity(AssociationImpl.java:556)
> at org.jboss.as.ejb3.remote.AssociationImpl.invokeMethod(AssociationImpl.java:537)
> at org.jboss.as.ejb3.remote.AssociationImpl.lambda$receiveInvocationRequest$0(AssociationImpl.java:195)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378)
> at java.lang.Thread.run(Thread.java:748)
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months
[JBoss JIRA] (DROOLS-2956) [DMN Designer] [IE11] Custom data type cancel changes throws an error
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2956?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-2956:
--------------------------------
Description:
If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
{code}
Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
{code}
h2. Manual Acceptance test
- Steps to reproduce fixed (/)
-- DROOLS-2995
- Check other browsers works still fine (/)
-- IE, Chrome, Firefox
- No error in browser console (/)
was:
If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
{code}
Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
{code}
h2. Manual Acceptance test
- Steps to reproduce fixed (/)
-- DROOLS-2955
- Check other browsers works still fine (/)
-- IE, Chrome, Firefox
- No error in browser console (/)
> [DMN Designer] [IE11] Custom data type cancel changes throws an error
> ---------------------------------------------------------------------
>
> Key: DROOLS-2956
> URL: https://issues.jboss.org/browse/DROOLS-2956
> Project: Drools
> Issue Type: Bug
> Components: DMN Editor
> Affects Versions: 7.11.0.Final
> Reporter: Jozef Marko
> Assignee: Jozef Marko
> Priority: Minor
> Labels: drools-tools
> Attachments: LACE Scoring.dmn, Screenshot from 2018-09-03 12-40-14.png
>
>
> If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
> {code}
> Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
> {code}
> h2. Manual Acceptance test
> - Steps to reproduce fixed (/)
> -- DROOLS-2995
> - Check other browsers works still fine (/)
> -- IE, Chrome, Firefox
> - No error in browser console (/)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months
[JBoss JIRA] (DROOLS-2956) [DMN Designer] [IE11] Custom data type cancel changes throws an error
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2956?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-2956:
--------------------------------
Description:
If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
{code}
Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
{code}
h2. Manual Acceptance test
- Steps to reproduce fixed (/)
-- DROOLS-2955
- Check other browsers works still fine (/)
-- IE, Chrome, Firefox
- No error in browser console (/)
was:
If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
{code}
Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
{code}
h2. Manual Acceptance test
- Steps to reproduce fixed (/)
- Check other browsers works still fine (/)
-- IE, Chrome, Firefox
- No error in browser console (/)
> [DMN Designer] [IE11] Custom data type cancel changes throws an error
> ---------------------------------------------------------------------
>
> Key: DROOLS-2956
> URL: https://issues.jboss.org/browse/DROOLS-2956
> Project: Drools
> Issue Type: Bug
> Components: DMN Editor
> Affects Versions: 7.11.0.Final
> Reporter: Jozef Marko
> Assignee: Jozef Marko
> Priority: Minor
> Labels: drools-tools
> Attachments: LACE Scoring.dmn, Screenshot from 2018-09-03 12-40-14.png
>
>
> If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
> {code}
> Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
> {code}
> h2. Manual Acceptance test
> - Steps to reproduce fixed (/)
> -- DROOLS-2955
> - Check other browsers works still fine (/)
> -- IE, Chrome, Firefox
> - No error in browser console (/)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months
[JBoss JIRA] (DROOLS-2995) [DMN Designer] Cancel edit custom data type expand items
by Jozef Marko (JIRA)
Jozef Marko created DROOLS-2995:
-----------------------------------
Summary: [DMN Designer] Cancel edit custom data type expand items
Key: DROOLS-2995
URL: https://issues.jboss.org/browse/DROOLS-2995
Project: Drools
Issue Type: Bug
Components: DMN Editor
Affects Versions: 7.12.0.Final
Reporter: Jozef Marko
Assignee: Jozef Marko
Priority: Optional
Attachments: LACE Scoring.dmn, Screenshot from 2018-09-18 09-28-39.png, Screenshot from 2018-09-18 09-28-46.png
If user edits custom data type with sub items, and he decides to cancel edit mode, the sub items are expanded even if they were collapsed previously.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months
[JBoss JIRA] (DROOLS-2956) [DMN Designer] [IE11] Custom data type cancel changes throws an error
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2956?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-2956:
--------------------------------
Description:
If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
{code}
Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
{code}
h2. Manual Acceptance test
- Steps to reproduce fixed (/)
- Check other browsers works still fine (/)
-- IE, Chrome, Firefox
- No error in browser console (/)
was:
If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
{code}
Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
{code}
h2. Acceptance test
- Steps to reproduce fixed
- Check other browsers works still fine
- No error/warning in browser console
> [DMN Designer] [IE11] Custom data type cancel changes throws an error
> ---------------------------------------------------------------------
>
> Key: DROOLS-2956
> URL: https://issues.jboss.org/browse/DROOLS-2956
> Project: Drools
> Issue Type: Bug
> Components: DMN Editor
> Affects Versions: 7.11.0.Final
> Reporter: Jozef Marko
> Assignee: Jozef Marko
> Priority: Minor
> Labels: drools-tools
> Attachments: LACE Scoring.dmn, Screenshot from 2018-09-03 12-40-14.png
>
>
> If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
> {code}
> Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
> {code}
> h2. Manual Acceptance test
> - Steps to reproduce fixed (/)
> - Check other browsers works still fine (/)
> -- IE, Chrome, Firefox
> - No error in browser console (/)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months
[JBoss JIRA] (DROOLS-2956) [DMN Designer] [IE11] Custom data type cancel changes throws an error
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2956?page=com.atlassian.jira.plugi... ]
Jozef Marko reassigned DROOLS-2956:
-----------------------------------
Sprint: 2018 Week 36-38
Assignee: Jozef Marko (was: Daniel José dos Santos)
> [DMN Designer] [IE11] Custom data type cancel changes throws an error
> ---------------------------------------------------------------------
>
> Key: DROOLS-2956
> URL: https://issues.jboss.org/browse/DROOLS-2956
> Project: Drools
> Issue Type: Bug
> Components: DMN Editor
> Affects Versions: 7.11.0.Final
> Reporter: Jozef Marko
> Assignee: Jozef Marko
> Priority: Minor
> Labels: drools-tools
> Attachments: LACE Scoring.dmn, Screenshot from 2018-09-03 12-40-14.png
>
>
> If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
> {code}
> Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
> {code}
> h2. Acceptance test
> - Steps to reproduce fixed
> - Check other browsers works still fine
> - No error/warning in browser console
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months
[JBoss JIRA] (DROOLS-2956) [DMN Designer] [IE11] Custom data type cancel changes throws an error
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2956?page=com.atlassian.jira.plugi... ]
Jozef Marko commented on DROOLS-2956:
-------------------------------------
[~dadossan] ok, thanks for comment, I will have a look.
> [DMN Designer] [IE11] Custom data type cancel changes throws an error
> ---------------------------------------------------------------------
>
> Key: DROOLS-2956
> URL: https://issues.jboss.org/browse/DROOLS-2956
> Project: Drools
> Issue Type: Bug
> Components: DMN Editor
> Affects Versions: 7.11.0.Final
> Reporter: Jozef Marko
> Assignee: Daniel José dos Santos
> Priority: Minor
> Labels: drools-tools
> Attachments: LACE Scoring.dmn, Screenshot from 2018-09-03 12-40-14.png
>
>
> If user starts editing data type in *manage custom data type* dialog, then he cancel changes by the cross button, the unexpected error dialog will appear with error inside:
> {code}
> Uncaught exception: Exception caught: (TypeError) : Object doesn't support property or method 'remove' Caused by: (TypeError) : Object doesn't support property or method 'remove'
> {code}
> h2. Acceptance test
> - Steps to reproduce fixed
> - Check other browsers works still fine
> - No error/warning in browser console
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 10 months