[JBoss JIRA] (WFLY-8409) Backward compatibility: IIOP doesn't work with standalone-full profile from EAP 7.0.0
by Tomasz Adamski (JIRA)
Tomasz Adamski created WFLY-8409:
------------------------------------
Summary: Backward compatibility: IIOP doesn't work with standalone-full profile from EAP 7.0.0
Key: WFLY-8409
URL: https://issues.jboss.org/browse/WFLY-8409
Project: WildFly
Issue Type: Bug
Components: IIOP
Affects Versions: 10.1.0.Final
Reporter: Tomasz Adamski
Assignee: Tomasz Adamski
Priority: Blocker
Fix For: 11.0.0.Beta1
*Description of problem:*
IIOP doesn't work with standalone-full profile from EAP 7.0.0.
This is regression against EAP 7.1.0.DR10.
This backward compatibility works correctly in EAP 6.x. EAP 6.4.0 works correctly with standalone-full.xml from EAP 6.0.0.
{code:diff}
@@ -270,8 +271,9 @@
</cache-container>
</subsystem>
<subsystem xmlns="urn:jboss:domain:iiop-openjdk:3.0">
- <orb socket-binding="iiop" ssl-socket-binding="iiop-ssl"/>
+ <orb socket-binding="iiop"/>
<initializers security="identity" transactions="spec"/>
+ <security server-requires-ssl="false" client-requires-ssl="false"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jaxrs:1.0"/>
<subsystem xmlns="urn:jboss:domain:jca:4.0">
@@ -304,7 +306,7 @@
{code}
*How reproducible:*
Always
*Steps to Reproduce:*
# get fresh EAP 7.1.0.DR11
# rm standalone/configuration/standalone-full.xml
# cp $\{EAP_7_0_0\}/standalone/configuration/standalone-full.xml standalone/configuration/
# ./bin/standalone.sh -c standalone-full.xml
*Actual results:*
{noformat}
...
10:43:53,503 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 42) WFLYCTL0013: Operation ("add") failed - address: ([("subsystem" => "iiop-openjdk")]) - failure description: "WFLYIIOP0111: SSL has not been configured but ssl-port property has been specified"
10:43:53,515 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 42) WFLYCTL0013: Operation ("add") failed - address: ([("subsystem" => "iiop-openjdk")]) - failure description: "WFLYIIOP0111: SSL has not been configured but ssl-port property has been specified"
...
10:43:55,251 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: JBoss EAP 7.1.0.Alpha1 (WildFly Core 3.0.0.Alpha22-redhat-1) started in 3272ms - Started 385 of 615 services (419 services are lazy, passive or on-demand)
{noformat}
*Expected results:*
No error on output.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (WFCORE-2562) NullPointerException when removing configuration history
by Dennis Reed (JIRA)
[ https://issues.jboss.org/browse/WFCORE-2562?page=com.atlassian.jira.plugi... ]
Dennis Reed updated WFCORE-2562:
--------------------------------
Description:
org.jboss.as.controller.persistence.ConfigurationFile#deleteRecursively is missing error checking.
If an I/O error occurs while listing the directory contents (file permission error/etc) it still tries to use the listing and gets a NullPointerException.
This method is used while removing old configuration history directories during boot, and the NullPointerException causes the EAP boot to abort.
was:
org.jboss.as.controller.persistence.ConfigurationFile#deleteRecursively is missing error checking.
If an I/O error occurs while listing the directory contents (file permission error/etc) it still tries to use the listing and gets a NullPointerException.
This method is used while removing old history directories during boot, and the NullPointerException causes the EAP boot to abort.
> NullPointerException when removing configuration history
> --------------------------------------------------------
>
> Key: WFCORE-2562
> URL: https://issues.jboss.org/browse/WFCORE-2562
> Project: WildFly Core
> Issue Type: Support Patch
> Components: Domain Management
> Affects Versions: 2.1.0.Final
> Reporter: Dennis Reed
> Assignee: Brian Stansberry
>
> org.jboss.as.controller.persistence.ConfigurationFile#deleteRecursively is missing error checking.
> If an I/O error occurs while listing the directory contents (file permission error/etc) it still tries to use the listing and gets a NullPointerException.
> This method is used while removing old configuration history directories during boot, and the NullPointerException causes the EAP boot to abort.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (WFCORE-2562) NullPointerException when removing configuration history
by Dennis Reed (JIRA)
[ https://issues.jboss.org/browse/WFCORE-2562?page=com.atlassian.jira.plugi... ]
Dennis Reed updated WFCORE-2562:
--------------------------------
Description:
org.jboss.as.controller.persistence.ConfigurationFile#deleteRecursively is missing error checking.
If an I/O error occurs while listing the directory contents (file permission error/etc) it still tries to use the listing and gets a NullPointerException.
This method is used while removing old history directories during boot, and the NullPointerException causes the EAP boot to abort.
was:
org.jboss.as.controller.persistence.ConfigurationFile#deleteRecursively is missing error checking.
If an I/O error occurs while listing the directory contents (file permission error/etc) it still tries to use the listing and gets a NullPointerException, aborting startup of EAP.
> NullPointerException when removing configuration history
> --------------------------------------------------------
>
> Key: WFCORE-2562
> URL: https://issues.jboss.org/browse/WFCORE-2562
> Project: WildFly Core
> Issue Type: Support Patch
> Components: Domain Management
> Affects Versions: 2.1.0.Final
> Reporter: Dennis Reed
> Assignee: Brian Stansberry
>
> org.jboss.as.controller.persistence.ConfigurationFile#deleteRecursively is missing error checking.
> If an I/O error occurs while listing the directory contents (file permission error/etc) it still tries to use the listing and gets a NullPointerException.
> This method is used while removing old history directories during boot, and the NullPointerException causes the EAP boot to abort.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (WFCORE-2562) NullPointerException when removing configuration history
by Dennis Reed (JIRA)
Dennis Reed created WFCORE-2562:
-----------------------------------
Summary: NullPointerException when removing configuration history
Key: WFCORE-2562
URL: https://issues.jboss.org/browse/WFCORE-2562
Project: WildFly Core
Issue Type: Support Patch
Components: Domain Management
Affects Versions: 2.1.0.Final
Reporter: Dennis Reed
Assignee: Brian Stansberry
org.jboss.as.controller.persistence.ConfigurationFile#deleteRecursively is missing error checking.
If an I/O error occurs while listing the directory contents (file permission error/etc) it still tries to use the listing and gets a NullPointerException, aborting startup of EAP.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (WFCORE-2561) Regression when executing CLI command directly from command line on Windows
by Jean-Francois Denise (JIRA)
[ https://issues.jboss.org/browse/WFCORE-2561?page=com.atlassian.jira.plugi... ]
Jean-Francois Denise moved JBEAP-9704 to WFCORE-2561:
-----------------------------------------------------
Project: WildFly Core (was: JBoss Enterprise Application Platform)
Key: WFCORE-2561 (was: JBEAP-9704)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: CLI
Scripts
(was: CLI)
(was: Scripts)
Affects Version/s: (was: 7.1.0.DR14)
Affects Testing: (was: Regression)
> Regression when executing CLI command directly from command line on Windows
> ---------------------------------------------------------------------------
>
> Key: WFCORE-2561
> URL: https://issues.jboss.org/browse/WFCORE-2561
> Project: WildFly Core
> Issue Type: Bug
> Components: CLI, Scripts
> Environment: Windows
> Reporter: Jean-Francois Denise
> Assignee: Jean-Francois Denise
> Priority: Blocker
>
> This CLI command \[1\] was working with EAP 7.1.0.DR13 and previous versions of EAP including EAP 7.0, but stopped working with jboss-cli.bat from EAP 7.1.0.DR14 with \[2\].
> As this is regression marking as blocker. Workaround for customer would mean need to update all its commands in scripts to use quotes and quotes escaping.
> \[1\]
> {noformat}
> jboss-cli.bat --connect --controller=127.0.0.1:9990 --commands=:read-attribute(name=server-state)
> {noformat}
> Note we execute this command from JVM as list =>
> {noformat}
> ["jboss-cli.bat", "--connect", "--controller=127.0.0.1:9990", "--commands=:read-attribute(name=server-state)"].execute()
> {noformat}, thus by JVM it should be provided as individual parameters.
> \[2\]
> {noformat}
> else was unexpected at this time.
> {noformat}
> Most likely the regression is caused by fix for [JBEAP-8808]
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (DROOLS-1490) Improve temporal operators to support java.time classes
by chandra vudumula (JIRA)
[ https://issues.jboss.org/browse/DROOLS-1490?page=com.atlassian.jira.plugi... ]
chandra vudumula commented on DROOLS-1490:
------------------------------------------
Thank you for the update
> Improve temporal operators to support java.time classes
> -------------------------------------------------------
>
> Key: DROOLS-1490
> URL: https://issues.jboss.org/browse/DROOLS-1490
> Project: Drools
> Issue Type: Enhancement
> Components: core engine
> Affects Versions: 7.0.0.Beta7
> Reporter: chandra vudumula
> Assignee: Mario Fusco
> Attachments: image-2017-03-20-11-45-20-413.png
>
>
> Hi,
> I am trying to create a rule using UI,i have a filed LocalDateTime have to compare using after or before.
> but in UI i am unable to see those options, its just showing default options like :equal to", "not equal to"...
> Added dependencies in sourceObject and didnt helped
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (DROOLS-1490) Improve temporal operators to support java.time classes
by Edson Tirelli (JIRA)
[ https://issues.jboss.org/browse/DROOLS-1490?page=com.atlassian.jira.plugi... ]
Edson Tirelli commented on DROOLS-1490:
---------------------------------------
[~dukechandu] I am setting the ticket type as enhancement, as this is new to java 8/Drools 7, as previously discussed by e-mail.
> Improve temporal operators to support java.time classes
> -------------------------------------------------------
>
> Key: DROOLS-1490
> URL: https://issues.jboss.org/browse/DROOLS-1490
> Project: Drools
> Issue Type: Enhancement
> Components: core engine
> Affects Versions: 7.0.0.Beta7
> Reporter: chandra vudumula
> Assignee: Mario Fusco
> Attachments: image-2017-03-20-11-45-20-413.png
>
>
> Hi,
> I am trying to create a rule using UI,i have a filed LocalDateTime have to compare using after or before.
> but in UI i am unable to see those options, its just showing default options like :equal to", "not equal to"...
> Added dependencies in sourceObject and didnt helped
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (DROOLS-1490) Improve temporal operators to support java.time classes
by Edson Tirelli (JIRA)
[ https://issues.jboss.org/browse/DROOLS-1490?page=com.atlassian.jira.plugi... ]
Edson Tirelli updated DROOLS-1490:
----------------------------------
Issue Type: Enhancement (was: Bug)
> Improve temporal operators to support java.time classes
> -------------------------------------------------------
>
> Key: DROOLS-1490
> URL: https://issues.jboss.org/browse/DROOLS-1490
> Project: Drools
> Issue Type: Enhancement
> Components: core engine
> Affects Versions: 7.0.0.Beta7
> Reporter: chandra vudumula
> Assignee: Mario Fusco
> Attachments: image-2017-03-20-11-45-20-413.png
>
>
> Hi,
> I am trying to create a rule using UI,i have a filed LocalDateTime have to compare using after or before.
> but in UI i am unable to see those options, its just showing default options like :equal to", "not equal to"...
> Added dependencies in sourceObject and didnt helped
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month