[JBoss JIRA] (WFLY-11651) Add method parameter check in jaxrs apps
by Marek Kopecký (Jira)
[ https://issues.jboss.org/browse/WFLY-11651?page=com.atlassian.jira.plugin... ]
Marek Kopecký updated WFLY-11651:
---------------------------------
Priority: Critical (was: Major)
> Add method parameter check in jaxrs apps
> ----------------------------------------
>
> Key: WFLY-11651
> URL: https://issues.jboss.org/browse/WFLY-11651
> Project: WildFly
> Issue Type: Bug
> Components: REST
> Affects Versions: 16.0.0.Beta1
> Reporter: R Searls
> Assignee: R Searls
> Priority: Critical
> Attachments: RESTEASY-2062.zip
>
>
> The jaxrs 2.1 spec section 3.2 require resource method parameters be checked at deployment time of errors handling @DefaultValue annotations. This must be added in wfly because
> resteasy is not called until the first client request.
> Testing
> Build and deploy attached app to wildfly.
> Before code fix deployment should be successful.
> Running app with cmd: curl "http://localhost:8080/jaxrs-wf/a?param=2"
> should fail.
> After code fix deployment should fail with detailed msg.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months
[JBoss JIRA] (WFLY-11651) Add method parameter check in jaxrs apps
by Marek Kopecký (Jira)
[ https://issues.jboss.org/browse/WFLY-11651?page=com.atlassian.jira.plugin... ]
Marek Kopecký updated WFLY-11651:
---------------------------------
Issue Type: Bug (was: Enhancement)
> Add method parameter check in jaxrs apps
> ----------------------------------------
>
> Key: WFLY-11651
> URL: https://issues.jboss.org/browse/WFLY-11651
> Project: WildFly
> Issue Type: Bug
> Components: REST
> Affects Versions: 16.0.0.Beta1
> Reporter: R Searls
> Assignee: R Searls
> Priority: Major
> Attachments: RESTEASY-2062.zip
>
>
> The jaxrs 2.1 spec section 3.2 require resource method parameters be checked at deployment time of errors handling @DefaultValue annotations. This must be added in wfly because
> resteasy is not called until the first client request.
> Testing
> Build and deploy attached app to wildfly.
> Before code fix deployment should be successful.
> Running app with cmd: curl "http://localhost:8080/jaxrs-wf/a?param=2"
> should fail.
> After code fix deployment should fail with detailed msg.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months
[JBoss JIRA] (DROOLS-3581) [DMN Designer] Decision Table: Remove use of TextBox for inline cell editing
by Michael Anstis (Jira)
Michael Anstis created DROOLS-3581:
--------------------------------------
Summary: [DMN Designer] Decision Table: Remove use of TextBox for inline cell editing
Key: DROOLS-3581
URL: https://issues.jboss.org/browse/DROOLS-3581
Project: Drools
Issue Type: Enhancement
Components: DMN Editor
Affects Versions: 7.17.0.Final
Reporter: Liz Clayton
Assignee: Michael Anstis
The "Description" column of the {{DecisionTableGrid}} currently uses a {{TextBox}} however it'd be nicer if it used a {{TextArea}} instead. This is the only use of {{TextBox}} across all grids.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months
[JBoss JIRA] (DROOLS-3580) [DMN Designer] Decision Table: Add support for merged view
by Michael Anstis (Jira)
Michael Anstis created DROOLS-3580:
--------------------------------------
Summary: [DMN Designer] Decision Table: Add support for merged view
Key: DROOLS-3580
URL: https://issues.jboss.org/browse/DROOLS-3580
Project: Drools
Issue Type: Enhancement
Components: DMN Editor
Affects Versions: 7.17.0.Final
Reporter: Edson Tirelli
Assignee: Michael Anstis
Add support for viewing the {{DecisionTableGrid}} in _merged_ mode.
The underlying widget supports merging however I need to check about model synchronisation and where how we'd add a button to toggle merged/unmerged..
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months
[JBoss JIRA] (DROOLS-3558) "NoSuchElementException: No value present" with executable-model, Map and binding
by Mario Fusco (Jira)
[ https://issues.jboss.org/browse/DROOLS-3558?page=com.atlassian.jira.plugi... ]
Mario Fusco updated DROOLS-3558:
--------------------------------
Story Points: 3
> "NoSuchElementException: No value present" with executable-model, Map and binding
> ---------------------------------------------------------------------------------
>
> Key: DROOLS-3558
> URL: https://issues.jboss.org/browse/DROOLS-3558
> Project: Drools
> Issue Type: Bug
> Components: executable model
> Affects Versions: 7.16.0.Final
> Reporter: Toshiya Kobayashi
> Assignee: Luca Molteni
> Priority: Major
> Labels: support
>
> When compiling a below rule with executable-model:
> {noformat}
> rule R1
> when
> $p : Person()
> $a : Address(number == $p.items[1])
> then
> end
> {noformat}
> it fails with the following error:
> {noformat}
> [ERROR] Tests run: 165, Failures: 0, Errors: 2, Skipped: 3, Time elapsed: 20.794 s <<< FAILURE! - in org.drools.modelcompiler.CompilerTest
> [ERROR] testMapWithBinding[FLOW_DSL](org.drools.modelcompiler.CompilerTest) Time elapsed: 0.02 s <<< ERROR!
> java.util.NoSuchElementException: No value present
> at java.util.Optional.get(Optional.java:135)
> at org.drools.modelcompiler.builder.generator.expressiontyper.ExpressionTyper.toTypedExpressionFromMethodCallOrField(ExpressionTyper.java:397)
> at org.drools.modelcompiler.builder.generator.expressiontyper.ExpressionTyper.toTypedExpressionRec(ExpressionTyper.java:211)
> at org.drools.modelcompiler.builder.generator.expressiontyper.ExpressionTyper.toTypedExpression(ExpressionTyper.java:108)
> at org.drools.modelcompiler.builder.generator.drlxparse.ConstraintParser.parseBinaryExpr(ConstraintParser.java:295)
> at org.drools.modelcompiler.builder.generator.drlxparse.ConstraintParser.getDrlxParseResult(ConstraintParser.java:111)
> at org.drools.modelcompiler.builder.generator.drlxparse.ConstraintParser.drlxParse(ConstraintParser.java:78)
> at org.drools.modelcompiler.builder.generator.visitor.pattern.PatternDSL.findAllConstraint(PatternDSL.java:124)
> at org.drools.modelcompiler.builder.generator.visitor.pattern.PatternDSL.buildPattern(PatternDSL.java:191)
> at org.drools.modelcompiler.builder.generator.visitor.ModelGeneratorVisitor.visit(ModelGeneratorVisitor.java:128)
> at org.drools.compiler.lang.descr.PatternDescr.accept(PatternDescr.java:267)
> at org.drools.modelcompiler.builder.generator.visitor.AndVisitor.visit(AndVisitor.java:29)
> at org.drools.modelcompiler.builder.generator.visitor.ModelGeneratorVisitor.visit(ModelGeneratorVisitor.java:69)
> at org.drools.modelcompiler.builder.generator.ModelGenerator.processRule(ModelGenerator.java:174)
> at org.drools.modelcompiler.builder.generator.ModelGenerator.generateModel(ModelGenerator.java:154)
> at org.drools.modelcompiler.builder.ModelBuilderImpl.compileKnowledgePackages(ModelBuilderImpl.java:144)
> at org.drools.modelcompiler.builder.ModelBuilderImpl.buildRules(ModelBuilderImpl.java:94)
> at org.drools.modelcompiler.builder.ModelBuilderImpl.buildPackages(ModelBuilderImpl.java:63)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:108)
> at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:100)
> at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:257)
> at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:74)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:267)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:235)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:204)
> at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:192)
> at org.drools.modelcompiler.BaseModelTest.createKieBuilder(BaseModelTest.java:142)
> at org.drools.modelcompiler.BaseModelTest.createKieBuilder(BaseModelTest.java:125)
> at org.drools.modelcompiler.BaseModelTest.getKieContainer(BaseModelTest.java:114)
> at org.drools.modelcompiler.BaseModelTest.getKieContainer(BaseModelTest.java:107)
> at org.drools.modelcompiler.BaseModelTest.getKieSession(BaseModelTest.java:103)
> at org.drools.modelcompiler.BaseModelTest.getKieSession(BaseModelTest.java:99)
> at org.drools.modelcompiler.CompilerTest.testMapWithBinding(CompilerTest.java:1457)
> ...
> {noformat}
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months
[JBoss JIRA] (DROOLS-3556) 'update' works differently than 'modify' when using dialect "mvel" with property reactive
by Mario Fusco (Jira)
[ https://issues.jboss.org/browse/DROOLS-3556?page=com.atlassian.jira.plugi... ]
Mario Fusco updated DROOLS-3556:
--------------------------------
Story Points: 5
> 'update' works differently than 'modify' when using dialect "mvel" with property reactive
> ------------------------------------------------------------------------------------------
>
> Key: DROOLS-3556
> URL: https://issues.jboss.org/browse/DROOLS-3556
> Project: Drools
> Issue Type: Bug
> Components: core engine
> Affects Versions: 7.14.0.Final
> Environment: - Red Hat Decision Manager
> - 7.2.0
> Reporter: Hiroko Miura
> Assignee: Mario Fusco
> Priority: Major
> Labels: support
> Attachments: updatePropertyReactive.zip
>
>
> Behavior of 'update' is different from 'modify' when dialect "mvel" is used with property reactive.
> In case of reproducer, when using update() after fact modification, the rule is continuously executed even though the condition no longer match.(i.e. re-evaluation does not work as expected)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months
[JBoss JIRA] (DROOLS-3579) [DMN Designer] Decision Table: Add support to duplicate a row with context menu
by Michael Anstis (Jira)
[ https://issues.jboss.org/browse/DROOLS-3579?page=com.atlassian.jira.plugi... ]
Michael Anstis updated DROOLS-3579:
-----------------------------------
Sprint: 2019 Week 05-07
> [DMN Designer] Decision Table: Add support to duplicate a row with context menu
> -------------------------------------------------------------------------------
>
> Key: DROOLS-3579
> URL: https://issues.jboss.org/browse/DROOLS-3579
> Project: Drools
> Issue Type: Enhancement
> Components: DMN Editor
> Reporter: Edson Tirelli
> Assignee: Michael Anstis
> Priority: Major
> Labels: drools-tools
>
> The {{DecisionTableGrid}} allows the User to add rules (rows) above or below the one right-clicked. It'd be nice to have the option to also duplicate the row over which the User has right-clicked with an additional entry on the context menu (duplicate can default to adding a row below.. it's pretty meaningless to _duplicate above_ or _duplicate below_).
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months