[JBoss JIRA] (WFLY-10945) JDK11 ws testsuite fails
by Jan Kalina (JIRA)
[ https://issues.jboss.org/browse/WFLY-10945?page=com.atlassian.jira.plugin... ]
Jan Kalina updated WFLY-10945:
------------------------------
Priority: Blocker (was: Major)
> JDK11 ws testsuite fails
> ------------------------
>
> Key: WFLY-10945
> URL: https://issues.jboss.org/browse/WFLY-10945
> Project: WildFly
> Issue Type: Sub-task
> Components: Test Suite
> Affects Versions: 14.0.0.Beta2
> Reporter: Jan Kalina
> Assignee: Jan Kalina
> Priority: Blocker
>
> ws testsuite failures on JDK-11:
> * missing local IP in SubjectAlternativeNamesExtension
> * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 + TLS1.2 seems buggy on JDK-11: Invalid ECDH ServerKeyExchange signature
> * not issue after switching to TLS1.1 or to ciphersuite TLS_RSA_WITH_AES_256_CBC_SHA256 -> JDK bug
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (WFLY-10945) JDK11 ws testsuite fails
by Jan Kalina (JIRA)
[ https://issues.jboss.org/browse/WFLY-10945?page=com.atlassian.jira.plugin... ]
Jan Kalina updated WFLY-10945:
------------------------------
Description:
ws testsuite failures on JDK-11:
* missing local IP in SubjectAlternativeNamesExtension
* TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 + TLS1.2 seems buggy on JDK-11: Invalid ECDH ServerKeyExchange signature
* not issue after switching to TLS1.1 or to ciphersuite TLS_RSA_WITH_AES_256_CBC_SHA256 -> JDK bug
> JDK11 ws testsuite fails
> ------------------------
>
> Key: WFLY-10945
> URL: https://issues.jboss.org/browse/WFLY-10945
> Project: WildFly
> Issue Type: Sub-task
> Components: Test Suite
> Affects Versions: 14.0.0.Beta2
> Reporter: Jan Kalina
> Assignee: Jan Kalina
>
> ws testsuite failures on JDK-11:
> * missing local IP in SubjectAlternativeNamesExtension
> * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 + TLS1.2 seems buggy on JDK-11: Invalid ECDH ServerKeyExchange signature
> * not issue after switching to TLS1.1 or to ciphersuite TLS_RSA_WITH_AES_256_CBC_SHA256 -> JDK bug
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (DROOLS-2931) DMN Designer - node names not generated when shortcuts used
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2931?page=com.atlassian.jira.plugi... ]
Jozef Marko commented on DROOLS-2931:
-------------------------------------
[~manstis] that is great news. I really appreciate your help here. Prefer to do in separate PR.
> DMN Designer - node names not generated when shortcuts used
> -----------------------------------------------------------
>
> Key: DROOLS-2931
> URL: https://issues.jboss.org/browse/DROOLS-2931
> Project: Drools
> Issue Type: Bug
> Components: DMN Editor
> Reporter: Jozef Marko
> Assignee: Jozef Marko
> Labels: drools-tools
>
> If DMN node is added via shortcuts (see JBPM-6385), then the node name is not generated automatically. It is not consistent with addition nodes via palette or popup context menu.
> h3. Acceptance test
> - Node added via palette has autogenerated name
> - Node added via popu context menu has autogenerated name
> - Node added via keyboard shortcut has autogenerated name
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (WFWIP-121) [Artemis 2.x upgrade] Undelivered/Lost messages in remote JCA scenario with killing remote servers
by Miroslav Novak (JIRA)
Miroslav Novak created WFWIP-121:
------------------------------------
Summary: [Artemis 2.x upgrade] Undelivered/Lost messages in remote JCA scenario with killing remote servers
Key: WFWIP-121
URL: https://issues.jboss.org/browse/WFWIP-121
Project: WildFly WIP
Issue Type: Bug
Components: Artemis
Reporter: Miroslav Novak
Assignee: Martyn Taylor
Priority: Blocker
There undelivered/lost messages in sceario where MDB is connected to remote Artemis cluster in which nodes are killed and restarted. Issue is intermittent.
Test Scenario:
* start cluster containing node 1 and 3 with deployed inQueue and outQueue
** JDBC store with Oracle 12c is used
* start node 2 and 4
* producer sends 5000 small and large messages to inQueue to node-1
* wait for producer to finish
* deploy MDBs to node-2 and node-4 which read messages from inQueue and sends them to outQueue in XA transactions
* kill and start following nodes in this sequence: 1,3,1,3,1
* wait until all messages are processed
* start Consumer which consumes messages form outQueue
* Check that number of messages sent to InQueue and received from OutQueue is the same
Result:
7 messages were missing in OutQueue.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (DROOLS-2457) CamelEndpointWith* tests failing with IBM JAVA (SAXNotRecognizedException)
by Mario Fusco (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2457?page=com.atlassian.jira.plugi... ]
Mario Fusco commented on DROOLS-2457:
-------------------------------------
In the IBM JDK the class com.sun.org.apache.xerces.internal.jaxp.validation.XMLSchemaFactory is implemented as it follows
{code:java}
public final class XMLSchemaFactory extends SchemaFactory {
private final SchemaFactory fSchemaFactory = new org.apache.xerces.jaxp.validation.XMLSchemaFactory();
public XMLSchemaFactory() {
}
public ErrorHandler getErrorHandler() {
return this.fSchemaFactory.getErrorHandler();
}
public LSResourceResolver getResourceResolver() {
return this.fSchemaFactory.getResourceResolver();
}
public boolean isSchemaLanguageSupported(String var1) {
return this.fSchemaFactory.isSchemaLanguageSupported(var1);
}
public Schema newSchema() throws SAXException {
return this.fSchemaFactory.newSchema();
}
public Schema newSchema(Source[] var1) throws SAXException {
return this.fSchemaFactory.newSchema(var1);
}
public void setErrorHandler(ErrorHandler var1) {
this.fSchemaFactory.setErrorHandler(var1);
}
public void setResourceResolver(LSResourceResolver var1) {
this.fSchemaFactory.setResourceResolver(var1);
}
}
{code}
The problem is that this class doesn't override the method setFeature() that by default is implemented in the SchemaFactory parent class as it follows
{code:java}
public void setFeature(String var1, boolean var2) throws SAXNotRecognizedException, SAXNotSupportedException {
if (var1 == null) {
throw new NullPointerException();
} else {
throw new SAXNotRecognizedException(var1);
}
}
{code}
Conversely that method is correctly overridden and implemented by the standard openjdk version and that's why it works there. At the moment I don't know if this issue will be fixable, keep investigating.
> CamelEndpointWith* tests failing with IBM JAVA (SAXNotRecognizedException)
> --------------------------------------------------------------------------
>
> Key: DROOLS-2457
> URL: https://issues.jboss.org/browse/DROOLS-2457
> Project: Drools
> Issue Type: Bug
> Components: integration
> Affects Versions: 7.7.0.Final
> Environment: RHEL 7.4 || Fedora 27
> IBM Java 1.8 ibm-java-x86_64-sdk-8.0.5.10
> Reporter: Martin Cimbalek
> Assignee: Mario Fusco
>
> {{org.kie.camel.embedded.camel.component.CamelEndpointWith*}} tests fail with
> {{org.xml.sax.SAXNotRecognizedException: http://javax.xml.XMLConstants/feature/secure-processing}} with IBM JAVA 1.8 (ibm-java-x86_64-sdk-8.0.5.10)
> +List of tests failing:+
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.testWorkingSetGlobalTestSessionSetAndGetGlobal
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testQuery
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testProcess
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testInsertElements
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionInsert
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testProcessInstanceSignalEvent
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionGetObject
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionRetractObject
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbXSDModelTest.testSessionInsert
> +Stacktrace (similar for other tests in fail):+
> java.lang.IllegalStateException: org.xml.sax.SAXNotRecognizedException: http://javax.xml.XMLConstants/feature/secure-processing
> at javax.xml.validation.SchemaFactory.setFeature(Unknown Source)
> at com.sun.xml.bind.v2.util.XmlFactory.createSchemaFactory(XmlFactory.java:102)
> at com.sun.tools.xjc.reader.xmlschema.parser.SchemaConstraintChecker.check(SchemaConstraintChecker.java:86)
> at com.sun.tools.xjc.ModelLoader.loadXMLSchema(ModelLoader.java:360)
> at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:174)
> at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:119)
> at org.drools.compiler.runtime.pipeline.impl.DroolsJaxbHelperProviderImpl.addXsdModel(DroolsJaxbHelperProviderImpl.java:121)
> at org.drools.compiler.builder.impl.KnowledgeBuilderImpl.addPackageFromXSD(KnowledgeBuilderImpl.java:918)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl$ResourceBuilder.lambda$static$2(CompositeKnowledgeBuilderImpl.java:283)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl$ResourceBuilder$$Lambda$21.000000002566C640.build(Unknown Source)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildResourceType(CompositeKnowledgeBuilderImpl.java:131)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildResources(CompositeKnowledgeBuilderImpl.java:121)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:98)
> at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:247)
> at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:74)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:353)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:265)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:209)
> at org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.registerKnowledgeRuntime(CamelEndpointWithJaxWrapperCollectionTest.java:139)
> at org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.configureDroolsContext(CamelEndpointWithJaxWrapperCollectionTest.java:112)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (DROOLS-2457) CamelEndpointWith* tests failing with IBM JAVA (SAXNotRecognizedException)
by Mario Fusco (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2457?page=com.atlassian.jira.plugi... ]
Mario Fusco reassigned DROOLS-2457:
-----------------------------------
Assignee: Mario Fusco (was: Luca Molteni)
> CamelEndpointWith* tests failing with IBM JAVA (SAXNotRecognizedException)
> --------------------------------------------------------------------------
>
> Key: DROOLS-2457
> URL: https://issues.jboss.org/browse/DROOLS-2457
> Project: Drools
> Issue Type: Bug
> Components: integration
> Affects Versions: 7.7.0.Final
> Environment: RHEL 7.4 || Fedora 27
> IBM Java 1.8 ibm-java-x86_64-sdk-8.0.5.10
> Reporter: Martin Cimbalek
> Assignee: Mario Fusco
>
> {{org.kie.camel.embedded.camel.component.CamelEndpointWith*}} tests fail with
> {{org.xml.sax.SAXNotRecognizedException: http://javax.xml.XMLConstants/feature/secure-processing}} with IBM JAVA 1.8 (ibm-java-x86_64-sdk-8.0.5.10)
> +List of tests failing:+
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.testWorkingSetGlobalTestSessionSetAndGetGlobal
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testQuery
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testProcess
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testInsertElements
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionInsert
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testProcessInstanceSignalEvent
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionGetObject
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionRetractObject
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbXSDModelTest.testSessionInsert
> +Stacktrace (similar for other tests in fail):+
> java.lang.IllegalStateException: org.xml.sax.SAXNotRecognizedException: http://javax.xml.XMLConstants/feature/secure-processing
> at javax.xml.validation.SchemaFactory.setFeature(Unknown Source)
> at com.sun.xml.bind.v2.util.XmlFactory.createSchemaFactory(XmlFactory.java:102)
> at com.sun.tools.xjc.reader.xmlschema.parser.SchemaConstraintChecker.check(SchemaConstraintChecker.java:86)
> at com.sun.tools.xjc.ModelLoader.loadXMLSchema(ModelLoader.java:360)
> at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:174)
> at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:119)
> at org.drools.compiler.runtime.pipeline.impl.DroolsJaxbHelperProviderImpl.addXsdModel(DroolsJaxbHelperProviderImpl.java:121)
> at org.drools.compiler.builder.impl.KnowledgeBuilderImpl.addPackageFromXSD(KnowledgeBuilderImpl.java:918)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl$ResourceBuilder.lambda$static$2(CompositeKnowledgeBuilderImpl.java:283)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl$ResourceBuilder$$Lambda$21.000000002566C640.build(Unknown Source)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildResourceType(CompositeKnowledgeBuilderImpl.java:131)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildResources(CompositeKnowledgeBuilderImpl.java:121)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:98)
> at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:247)
> at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:74)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:353)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:265)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:209)
> at org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.registerKnowledgeRuntime(CamelEndpointWithJaxWrapperCollectionTest.java:139)
> at org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.configureDroolsContext(CamelEndpointWithJaxWrapperCollectionTest.java:112)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (DROOLS-2457) CamelEndpointWith* tests failing with IBM JAVA (SAXNotRecognizedException)
by Mario Fusco (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2457?page=com.atlassian.jira.plugi... ]
Mario Fusco updated DROOLS-2457:
--------------------------------
Sprint: 2018 Week 33-35
> CamelEndpointWith* tests failing with IBM JAVA (SAXNotRecognizedException)
> --------------------------------------------------------------------------
>
> Key: DROOLS-2457
> URL: https://issues.jboss.org/browse/DROOLS-2457
> Project: Drools
> Issue Type: Bug
> Components: integration
> Affects Versions: 7.7.0.Final
> Environment: RHEL 7.4 || Fedora 27
> IBM Java 1.8 ibm-java-x86_64-sdk-8.0.5.10
> Reporter: Martin Cimbalek
> Assignee: Mario Fusco
>
> {{org.kie.camel.embedded.camel.component.CamelEndpointWith*}} tests fail with
> {{org.xml.sax.SAXNotRecognizedException: http://javax.xml.XMLConstants/feature/secure-processing}} with IBM JAVA 1.8 (ibm-java-x86_64-sdk-8.0.5.10)
> +List of tests failing:+
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.testWorkingSetGlobalTestSessionSetAndGetGlobal
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testQuery
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testProcess
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testInsertElements
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionInsert
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testProcessInstanceSignalEvent
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionGetObject
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbTest.testSessionRetractObject
> * org.kie.camel.embedded.camel.component.CamelEndpointWithJaxbXSDModelTest.testSessionInsert
> +Stacktrace (similar for other tests in fail):+
> java.lang.IllegalStateException: org.xml.sax.SAXNotRecognizedException: http://javax.xml.XMLConstants/feature/secure-processing
> at javax.xml.validation.SchemaFactory.setFeature(Unknown Source)
> at com.sun.xml.bind.v2.util.XmlFactory.createSchemaFactory(XmlFactory.java:102)
> at com.sun.tools.xjc.reader.xmlschema.parser.SchemaConstraintChecker.check(SchemaConstraintChecker.java:86)
> at com.sun.tools.xjc.ModelLoader.loadXMLSchema(ModelLoader.java:360)
> at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:174)
> at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:119)
> at org.drools.compiler.runtime.pipeline.impl.DroolsJaxbHelperProviderImpl.addXsdModel(DroolsJaxbHelperProviderImpl.java:121)
> at org.drools.compiler.builder.impl.KnowledgeBuilderImpl.addPackageFromXSD(KnowledgeBuilderImpl.java:918)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl$ResourceBuilder.lambda$static$2(CompositeKnowledgeBuilderImpl.java:283)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl$ResourceBuilder$$Lambda$21.000000002566C640.build(Unknown Source)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildResourceType(CompositeKnowledgeBuilderImpl.java:131)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildResources(CompositeKnowledgeBuilderImpl.java:121)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:98)
> at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:247)
> at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:74)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:353)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:265)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:209)
> at org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.registerKnowledgeRuntime(CamelEndpointWithJaxWrapperCollectionTest.java:139)
> at org.kie.camel.embedded.camel.component.CamelEndpointWithJaxWrapperCollectionTest.configureDroolsContext(CamelEndpointWithJaxWrapperCollectionTest.java:112)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months